From 422995cd45ff14ebc83fc08819724b64ff5e72f5 Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 15 Apr 2025 23:27:59 +0530 Subject: [PATCH 001/108] fix: seperate backup options into app --- frappe/hooks.py | 10 - .../doctype/dropbox_settings/__init__.py | 0 .../dropbox_settings/dropbox_settings.js | 47 --- .../dropbox_settings/dropbox_settings.json | 126 ------ .../dropbox_settings/dropbox_settings.py | 378 ------------------ .../dropbox_settings/test_dropbox_settings.py | 8 - .../doctype/google_drive/__init__.py | 0 .../doctype/google_drive/google_drive.js | 71 ---- .../doctype/google_drive/google_drive.json | 126 ------ .../doctype/google_drive/google_drive.py | 229 ----------- .../doctype/google_drive/test_google_drive.py | 8 - .../doctype/s3_backup_settings/__init__.py | 0 .../s3_backup_settings/s3_backup_settings.js | 26 -- .../s3_backup_settings.json | 163 -------- .../s3_backup_settings/s3_backup_settings.py | 196 --------- .../test_s3_backup_settings.py | 7 - frappe/integrations/google_oauth.py | 1 - .../workspace/integrations/integrations.json | 41 -- frappe/translate.py | 2 +- pyproject.toml | 6 - 20 files changed, 1 insertion(+), 1444 deletions(-) delete mode 100644 frappe/integrations/doctype/dropbox_settings/__init__.py delete mode 100644 frappe/integrations/doctype/dropbox_settings/dropbox_settings.js delete mode 100644 frappe/integrations/doctype/dropbox_settings/dropbox_settings.json delete mode 100644 frappe/integrations/doctype/dropbox_settings/dropbox_settings.py delete mode 100644 frappe/integrations/doctype/dropbox_settings/test_dropbox_settings.py delete mode 100644 frappe/integrations/doctype/google_drive/__init__.py delete mode 100644 frappe/integrations/doctype/google_drive/google_drive.js delete mode 100644 frappe/integrations/doctype/google_drive/google_drive.json delete mode 100644 frappe/integrations/doctype/google_drive/google_drive.py delete mode 100644 frappe/integrations/doctype/google_drive/test_google_drive.py delete mode 100755 frappe/integrations/doctype/s3_backup_settings/__init__.py delete mode 100755 frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js delete mode 100755 frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json delete mode 100755 frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py delete mode 100755 frappe/integrations/doctype/s3_backup_settings/test_s3_backup_settings.py diff --git a/frappe/hooks.py b/frappe/hooks.py index bf4d8ac744..7162165ed0 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -248,31 +248,21 @@ scheduler_events = { ], "daily_long": [], "daily_maintenance": [ - "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_daily", - "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_daily", - "frappe.integrations.doctype.google_drive.google_drive.daily_backup", "frappe.email.doctype.auto_email_report.auto_email_report.send_daily", "frappe.desk.notifications.clear_notifications", "frappe.sessions.clear_expired_sessions", "frappe.website.doctype.personal_data_deletion_request.personal_data_deletion_request.remove_unverified_record", - "frappe.integrations.doctype.google_contacts.google_contacts.sync", "frappe.automation.doctype.auto_repeat.auto_repeat.make_auto_repeat_entry", "frappe.core.doctype.log_settings.log_settings.run_log_clean_up", ], "weekly_long": [ - "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_weekly", - "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_weekly", "frappe.desk.form.document_follow.send_weekly_updates", "frappe.utils.change_log.check_for_update", - "frappe.integrations.doctype.google_drive.google_drive.weekly_backup", "frappe.desk.doctype.changelog_feed.changelog_feed.fetch_changelog_feed", ], "monthly": [ "frappe.email.doctype.auto_email_report.auto_email_report.send_monthly", ], - "monthly_long": [ - "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_monthly" - ], } sounds = [ diff --git a/frappe/integrations/doctype/dropbox_settings/__init__.py b/frappe/integrations/doctype/dropbox_settings/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js b/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js deleted file mode 100644 index 6fee47f1bd..0000000000 --- a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2016, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("Dropbox Settings", { - refresh: function (frm) { - frm.toggle_display( - ["app_access_key", "app_secret_key"], - !frm.doc.__onload?.dropbox_setup_via_site_config - ); - frm.events.take_backup(frm); - }, - - are_keys_present: function (frm) { - return ( - (frm.doc.app_access_key && frm.doc.app_secret_key) || - frm.doc.__onload?.dropbox_setup_via_site_config - ); - }, - - allow_dropbox_access: function (frm) { - if (!frm.events.are_keys_present(frm)) { - frappe.msgprint(__("App Access Key and/or Secret Key are not present.")); - return; - } - - frappe.call({ - method: "frappe.integrations.doctype.dropbox_settings.dropbox_settings.get_dropbox_authorize_url", - freeze: true, - callback: function (r) { - if (!r.exc) { - window.open(r.message.auth_url); - } - }, - }); - }, - - take_backup: function (frm) { - if (frm.doc.enabled && (frm.doc.dropbox_refresh_token || frm.doc.dropbox_access_token)) { - frm.add_custom_button(__("Take Backup Now"), function () { - frappe.call({ - method: "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backup", - freeze: true, - }); - }); - } - }, -}); diff --git a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json b/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json deleted file mode 100644 index 121006bb8b..0000000000 --- a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "actions": [], - "creation": "2016-09-21 10:12:57.399174", - "doctype": "DocType", - "document_type": "System", - "editable_grid": 1, - "engine": "InnoDB", - "field_order": [ - "enabled", - "send_notifications_to", - "send_email_for_successful_backup", - "backup_frequency", - "limit_no_of_backups", - "no_of_backups", - "file_backup", - "app_access_key", - "app_secret_key", - "allow_dropbox_access", - "dropbox_refresh_token", - "dropbox_access_token" - ], - "fields": [ - { - "default": "0", - "fieldname": "enabled", - "fieldtype": "Check", - "label": "Enabled" - }, - { - "fieldname": "send_notifications_to", - "fieldtype": "Data", - "in_list_view": 1, - "label": "Send Notifications To", - "reqd": 1 - }, - { - "default": "1", - "description": "Note: By default emails for failed backups are sent.", - "fieldname": "send_email_for_successful_backup", - "fieldtype": "Check", - "label": "Send Email for Successful Backup" - }, - { - "fieldname": "backup_frequency", - "fieldtype": "Select", - "in_list_view": 1, - "label": "Backup Frequency", - "options": "\nDaily\nWeekly", - "reqd": 1 - }, - { - "default": "0", - "fieldname": "limit_no_of_backups", - "fieldtype": "Check", - "label": "Limit Number of DB Backups" - }, - { - "default": "5", - "depends_on": "eval:doc.limit_no_of_backups", - "fieldname": "no_of_backups", - "fieldtype": "Int", - "label": "Number of DB Backups" - }, - { - "default": "1", - "fieldname": "file_backup", - "fieldtype": "Check", - "label": "File Backup" - }, - { - "fieldname": "app_access_key", - "fieldtype": "Data", - "label": "App Access Key" - }, - { - "fieldname": "app_secret_key", - "fieldtype": "Password", - "label": "App Secret Key" - }, - { - "fieldname": "allow_dropbox_access", - "fieldtype": "Button", - "label": "Allow Dropbox Access" - }, - { - "fieldname": "dropbox_refresh_token", - "fieldtype": "Password", - "hidden": 1, - "label": "Dropbox Refresh Token", - "no_copy": 1, - "read_only": 1 - }, - { - "fieldname": "dropbox_access_token", - "fieldtype": "Password", - "hidden": 1, - "label": "Dropbox Access Token" - } - ], - "in_create": 1, - "issingle": 1, - "links": [], - "modified": "2024-03-23 16:03:23.176690", - "modified_by": "Administrator", - "module": "Integrations", - "name": "Dropbox Settings", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "print": 1, - "read": 1, - "role": "System Manager", - "share": 1, - "write": 1 - } - ], - "read_only": 1, - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py b/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py deleted file mode 100644 index edcbba1c3f..0000000000 --- a/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +++ /dev/null @@ -1,378 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies and contributors -# License: MIT. See LICENSE - -import os -from urllib.parse import parse_qs, urlparse - -import dropbox -from rq.timeouts import JobTimeoutException - -import frappe -from frappe import _ -from frappe.integrations.offsite_backup_utils import ( - get_chunk_site, - get_latest_backup_file, - send_email, - validate_file_size, -) -from frappe.model.document import Document -from frappe.utils import cint, encode, get_backups_path, get_files_path, get_request_site_address -from frappe.utils.background_jobs import enqueue -from frappe.utils.backups import new_backup - -ignore_list = [".DS_Store"] - - -class DropboxSettings(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 - - app_access_key: DF.Data | None - app_secret_key: DF.Password | None - backup_frequency: DF.Literal["", "Daily", "Weekly"] - dropbox_access_token: DF.Password | None - dropbox_refresh_token: DF.Password | None - enabled: DF.Check - file_backup: DF.Check - limit_no_of_backups: DF.Check - no_of_backups: DF.Int - send_email_for_successful_backup: DF.Check - send_notifications_to: DF.Data - # end: auto-generated types - - def onload(self): - if not self.app_access_key and frappe.conf.dropbox_access_key: - self.set_onload("dropbox_setup_via_site_config", 1) - - def validate(self): - if self.enabled and self.limit_no_of_backups and self.no_of_backups < 1: - frappe.throw(_("Number of DB backups cannot be less than 1")) - - -@frappe.whitelist() -def take_backup(): - """Enqueue longjob for taking backup to dropbox""" - enqueue( - "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backup_to_dropbox", - 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_if(freq): - if frappe.db.get_single_value("Dropbox Settings", "backup_frequency") == freq: - take_backup_to_dropbox() - - -def take_backup_to_dropbox(retry_count=0, upload_db_backup=True): - did_not_upload, error_log = [], [] - try: - if cint(frappe.db.get_single_value("Dropbox Settings", "enabled")): - validate_file_size() - - did_not_upload, error_log = backup_to_dropbox(upload_db_backup) - if did_not_upload: - raise Exception - - if cint(frappe.db.get_single_value("Dropbox Settings", "send_email_for_successful_backup")): - send_email(True, "Dropbox", "Dropbox Settings", "send_notifications_to") - except JobTimeoutException: - if retry_count < 2: - args = { - "retry_count": retry_count + 1, - "upload_db_backup": False, # considering till worker timeout db backup is uploaded - } - enqueue( - "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backup_to_dropbox", - queue="long", - timeout=1500, - **args, - ) - except Exception: - if isinstance(error_log, str): - error_message = error_log + "\n" + frappe.get_traceback() - else: - file_and_error = [" - ".join(f) for f in zip(did_not_upload, error_log, strict=False)] - error_message = "\n".join(file_and_error) + "\n" + frappe.get_traceback() - - send_email(False, "Dropbox", "Dropbox Settings", "send_notifications_to", error_message) - - -def backup_to_dropbox(upload_db_backup=True): - # upload database - dropbox_settings = get_dropbox_settings() - dropbox_client = get_dropbox_client(dropbox_settings) - - if upload_db_backup: - if frappe.flags.create_new_backup: - backup = new_backup(ignore_files=True) - 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)) - else: - filename, site_config = get_latest_backup_file() - - upload_file_to_dropbox(filename, "/database", dropbox_client) - upload_file_to_dropbox(site_config, "/database", dropbox_client) - - # delete older databases - if dropbox_settings["no_of_backups"]: - delete_older_backups(dropbox_client, "/database", dropbox_settings["no_of_backups"]) - - # upload files to files folder - did_not_upload = [] - error_log = [] - - if dropbox_settings["file_backup"]: - upload_from_folder(get_files_path(), 0, "/files", dropbox_client, did_not_upload, error_log) - upload_from_folder( - get_files_path(is_private=1), 1, "/private/files", dropbox_client, did_not_upload, error_log - ) - - return did_not_upload, list(set(error_log)) - - -def upload_from_folder(path, is_private, dropbox_folder, dropbox_client, did_not_upload, error_log): - if not os.path.exists(path): - return - - if is_fresh_upload(): - response = get_uploaded_files_meta(dropbox_folder, dropbox_client) - else: - response = frappe._dict({"entries": []}) - - path = str(path) - - for f in frappe.get_all( - "File", - filters={"is_folder": 0, "is_private": is_private, "uploaded_to_dropbox": 0}, - fields=["file_url", "name", "file_name"], - ): - if not f.file_url: - continue - filename = f.file_url.rsplit("/", 1)[-1] - - filepath = os.path.join(path, filename) - - if filename in ignore_list: - continue - - found = False - for file_metadata in response.entries: - try: - if os.path.basename(filepath) == file_metadata.name and os.stat( - encode(filepath) - ).st_size == int(file_metadata.size): - found = True - update_file_dropbox_status(f.name) - break - except Exception: - error_log.append(frappe.get_traceback()) - - if not found: - try: - upload_file_to_dropbox(filepath, dropbox_folder, dropbox_client) - update_file_dropbox_status(f.name) - except Exception: - did_not_upload.append(filepath) - error_log.append(frappe.get_traceback()) - - -def upload_file_to_dropbox(filename, folder, dropbox_client): - """upload files with chunk of 15 mb to reduce session append calls""" - if not os.path.exists(filename): - return - - create_folder_if_not_exists(folder, dropbox_client) - file_size = os.path.getsize(encode(filename)) - chunk_size = get_chunk_site(file_size) - - mode = dropbox.files.WriteMode.overwrite - - f = open(encode(filename), "rb") - path = f"{folder}/{os.path.basename(filename)}" - - try: - if file_size <= chunk_size: - dropbox_client.files_upload(f.read(), path, mode) - else: - upload_session_start_result = dropbox_client.files_upload_session_start(f.read(chunk_size)) - cursor = dropbox.files.UploadSessionCursor( - session_id=upload_session_start_result.session_id, offset=f.tell() - ) - commit = dropbox.files.CommitInfo(path=path, mode=mode) - - while f.tell() < file_size: - if (file_size - f.tell()) <= chunk_size: - dropbox_client.files_upload_session_finish(f.read(chunk_size), cursor, commit) - else: - dropbox_client.files_upload_session_append( - f.read(chunk_size), cursor.session_id, cursor.offset - ) - cursor.offset = f.tell() - except dropbox.exceptions.ApiError as e: - if isinstance(e.error, dropbox.files.UploadError): - error = f"File Path: {path}\n" - error += frappe.get_traceback() - frappe.log_error(error) - else: - raise - - -def create_folder_if_not_exists(folder, dropbox_client): - try: - dropbox_client.files_get_metadata(folder) - except dropbox.exceptions.ApiError as e: - # folder not found - if isinstance(e.error, dropbox.files.GetMetadataError): - dropbox_client.files_create_folder(folder) - else: - raise - - -def update_file_dropbox_status(file_name): - frappe.db.set_value("File", file_name, "uploaded_to_dropbox", 1, update_modified=False) - - -def is_fresh_upload(): - file_name = frappe.db.get_value("File", {"uploaded_to_dropbox": 1}, "name") - return not file_name - - -def get_uploaded_files_meta(dropbox_folder, dropbox_client): - try: - return dropbox_client.files_list_folder(dropbox_folder) - except dropbox.exceptions.ApiError as e: - # folder not found - if isinstance(e.error, dropbox.files.ListFolderError): - return frappe._dict({"entries": []}) - raise - - -def get_dropbox_client(dropbox_settings): - dropbox_client = dropbox.Dropbox( - oauth2_access_token=dropbox_settings["access_token"], - oauth2_refresh_token=dropbox_settings["refresh_token"], - app_key=dropbox_settings["app_key"], - app_secret=dropbox_settings["app_secret"], - timeout=None, - ) - - # checking if the access token has expired - dropbox_client.files_list_folder("") - if dropbox_settings["access_token"] != dropbox_client._oauth2_access_token: - set_dropbox_token(dropbox_client._oauth2_access_token) - - return dropbox_client - - -def get_dropbox_settings(redirect_uri=False): - # NOTE: access token is kept for legacy dropbox apps - settings = frappe.get_doc("Dropbox Settings") - app_details = { - "app_key": settings.app_access_key or frappe.conf.dropbox_access_key, - "app_secret": settings.get_password(fieldname="app_secret_key", raise_exception=False) - if settings.app_secret_key - else frappe.conf.dropbox_secret_key, - "refresh_token": settings.get_password("dropbox_refresh_token", raise_exception=False), - "access_token": settings.get_password("dropbox_access_token", raise_exception=False), - "file_backup": settings.file_backup, - "no_of_backups": settings.no_of_backups if settings.limit_no_of_backups else None, - } - - if redirect_uri: - app_details.update( - { - "redirect_uri": get_request_site_address(True) - + "/api/method/frappe.integrations.doctype.dropbox_settings.dropbox_settings.dropbox_auth_finish" - } - ) - - if not (app_details["app_key"] and app_details["app_secret"]): - raise Exception(_("Please set Dropbox access keys in site config or doctype")) - - return app_details - - -def delete_older_backups(dropbox_client, folder_path, to_keep): - res = dropbox_client.files_list_folder(path=folder_path) - files = [f for f in res.entries if isinstance(f, dropbox.files.FileMetadata) and "sql" in f.name] - - if len(files) <= to_keep: - return - - files.sort(key=lambda item: item.client_modified, reverse=True) - for f in files[to_keep:]: - dropbox_client.files_delete(os.path.join(folder_path, f.name)) - - -@frappe.whitelist() -def get_dropbox_authorize_url(): - app_details = get_dropbox_settings(redirect_uri=True) - dropbox_oauth_flow = dropbox.DropboxOAuth2Flow( - consumer_key=app_details["app_key"], - redirect_uri=app_details["redirect_uri"], - session={}, - csrf_token_session_key="dropbox-auth-csrf-token", - consumer_secret=app_details["app_secret"], - token_access_type="offline", - ) - - auth_url = dropbox_oauth_flow.start() - - return {"auth_url": auth_url, "args": parse_qs(urlparse(auth_url).query)} - - -@frappe.whitelist() -def dropbox_auth_finish(): - app_details = get_dropbox_settings(redirect_uri=True) - callback = frappe.form_dict - close = '

' + _("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 Date: Tue, 15 Apr 2025 23:54:06 +0530 Subject: [PATCH 002/108] fix: add abiltiy to extend the Domain callback methods via google oauth constructor --- frappe/integrations/google_oauth.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/integrations/google_oauth.py b/frappe/integrations/google_oauth.py index a69fde7346..5510c73f49 100644 --- a/frappe/integrations/google_oauth.py +++ b/frappe/integrations/google_oauth.py @@ -33,7 +33,7 @@ class GoogleAuthenticationError(Exception): class GoogleOAuth: OAUTH_URL = "https://oauth2.googleapis.com/token" - def __init__(self, domain: str, validate: bool = True): + def __init__(self, domain: str, validate: bool = True, domain_callback_url=None): self.google_settings = frappe.get_single("Google Settings") self.domain = domain.lower() self.scopes = ( @@ -45,6 +45,9 @@ class GoogleOAuth: if validate: self.validate_google_settings() + if domain_callback_url: + _DOMAIN_CALLBACK_METHODS[domain] = domain_callback_url + def validate_google_settings(self): google_settings = "Google Settings" From 80aaf1f31e950d9f0abe6f7521289df4f88763f1 Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 16 Apr 2025 00:19:34 +0530 Subject: [PATCH 003/108] fix: add a better config dict to GoogleOAuth instead of args --- frappe/integrations/google_oauth.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frappe/integrations/google_oauth.py b/frappe/integrations/google_oauth.py index 5510c73f49..448de20d03 100644 --- a/frappe/integrations/google_oauth.py +++ b/frappe/integrations/google_oauth.py @@ -16,7 +16,6 @@ _SCOPES = { } _SERVICES = { "contacts": ("people", "v1"), - "drive": ("drive", "v3"), "indexing": ("indexing", "v3"), } _DOMAIN_CALLBACK_METHODS = { @@ -33,7 +32,7 @@ class GoogleAuthenticationError(Exception): class GoogleOAuth: OAUTH_URL = "https://oauth2.googleapis.com/token" - def __init__(self, domain: str, validate: bool = True, domain_callback_url=None): + def __init__(self, domain: str, validate: bool = True, config=None): self.google_settings = frappe.get_single("Google Settings") self.domain = domain.lower() self.scopes = ( @@ -42,12 +41,13 @@ class GoogleOAuth: else _SCOPES[self.domain] ) + if config: + _DOMAIN_CALLBACK_METHODS[self.domain] = config["domain_callback_url"] + _SERVICES[self.domain] = config["service_version"] + if validate: self.validate_google_settings() - if domain_callback_url: - _DOMAIN_CALLBACK_METHODS[domain] = domain_callback_url - def validate_google_settings(self): google_settings = "Google Settings" From a9b9ddde3a25796c3390912f768aa40f3547050a Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 13 May 2025 11:23:30 +0530 Subject: [PATCH 004/108] fix: add warning for module seperation --- frappe/patches.txt | 2 +- .../v16_0/add_module_deprecation_warning.py | 15 +++++++++++++++ .../v16_0/social_eps_deprecation_warning.py | 9 --------- 3 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 frappe/patches/v16_0/add_module_deprecation_warning.py delete mode 100644 frappe/patches/v16_0/social_eps_deprecation_warning.py diff --git a/frappe/patches.txt b/frappe/patches.txt index 3ae67c9092..0519025e88 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -246,4 +246,4 @@ 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.v16_0.social_eps_deprecation_warning +frappe.patches.v16_0.add_module_deprecation_warning diff --git a/frappe/patches/v16_0/add_module_deprecation_warning.py b/frappe/patches/v16_0/add_module_deprecation_warning.py new file mode 100644 index 0000000000..16e1e9a9e1 --- /dev/null +++ b/frappe/patches/v16_0/add_module_deprecation_warning.py @@ -0,0 +1,15 @@ +import click + + +def execute(): + module_app_map = { + "Social Module/ Energy Points System": ("eps", "system"), + "Offsite Backup Integrations (Google Drive, S3, Dropbox)": ("offsite_backups", "intergration"), + } + for module, (app, system_type) in module_app_map.items(): + click.secho( + f"{module} is moving to a new app and will removed from the framework in version-16.\n" + f"Please install the app to continue using the {system_type}: https://github.com/frappe/{app}", + fg="yellow", + ) + click.secho("\n") diff --git a/frappe/patches/v16_0/social_eps_deprecation_warning.py b/frappe/patches/v16_0/social_eps_deprecation_warning.py deleted file mode 100644 index e412e5969f..0000000000 --- a/frappe/patches/v16_0/social_eps_deprecation_warning.py +++ /dev/null @@ -1,9 +0,0 @@ -import click - - -def execute(): - click.secho( - "Social Module/Energy Points System is moving to a new app and will removed from the framework in version-16.\n" - "Please install the app to continue using the integration: https://github.com/frappe/eps", - fg="yellow", - ) From 484a43736ae001cbd350daae37723427361661a3 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Mon, 16 Jun 2025 02:13:48 +0530 Subject: [PATCH 005/108] fix: query report read and if_owner permissions --- frappe/desk/query_report.py | 43 ++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 104211759a..f3fc023dd0 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -14,7 +14,7 @@ from frappe.desk.reportview import clean_params, parse_json from frappe.model.utils import render_include from frappe.modules import get_module_path, scrub from frappe.monitor import add_data_to_monitor -from frappe.permissions import get_role_permissions, has_permission +from frappe.permissions import get_role_permissions, get_roles, has_permission from frappe.utils import cint, cstr, flt, format_duration, get_html_format, sbool @@ -706,6 +706,9 @@ def has_match( match = False break + if match: + match = has_unrestricted_read_access(doctype=ref_doctype) + # 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 matched_for_doctype = matched_for_doctype or match @@ -722,6 +725,44 @@ 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] + + roles = get_roles(user) + + standard_perm_exists = frappe.db.exists( + "DocPerm", + { + "parent": doctype, + "role": ["in", roles], + "permlevel": 0, + "read": 1, + "if_owner": 0, + }, + ) + + custom_perm_exists = frappe.db.exists( + "Custom DocPerm", + { + "parent": doctype, + "role": ["in", roles], + "permlevel": 0, + "read": 1, + "if_owner": 0, + }, + ) + + has_perm = bool(custom_perm_exists or standard_perm_exists) + frappe.local.unrestricted_read_perm_cache[cache_key] = has_perm + return has_perm + + def get_linked_doctypes(columns, data): linked_doctypes = {} From 74d780d7717c58143d0f4ddd922112b531c3cfef Mon Sep 17 00:00:00 2001 From: MochaMind Date: Tue, 17 Jun 2025 03:25:35 +0530 Subject: [PATCH 006/108] fix: sync translations from crowdin (#32921) --- frappe/locale/cs.po | 31728 ++++++++++++++++++++++++++++++ frappe/locale/de.po | 76 +- frappe/locale/es.po | 12 +- frappe/locale/fa.po | 6 +- frappe/locale/fr.po | 4 +- frappe/locale/hu.po | 32 +- frappe/locale/nl.po | 43678 ++++++++++++++++++------------------------ frappe/locale/pl.po | 10 +- frappe/locale/ru.po | 106 +- frappe/locale/sv.po | 14 +- frappe/locale/vi.po | 43678 ++++++++++++++++++------------------------ 11 files changed, 69358 insertions(+), 49986 deletions(-) create mode 100644 frappe/locale/cs.po diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po new file mode 100644 index 0000000000..b811b5bff1 --- /dev/null +++ b/frappe/locale/cs.po @@ -0,0 +1,31728 @@ +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" +"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" +"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" +"X-Crowdin-Language: cs\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: cs_CZ\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 "" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "" + +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js: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 "" + +#: frappe/core/doctype/doctype/doctype.py:1354 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:362 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1348 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:704 +msgid "** Failed: {0} to {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' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:876 +msgid "1 = True & 0 = False" +msgstr "" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:951 +msgid "1 Report" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:380 +msgid "1 comment" +msgstr "" + +#: frappe/tests/test_utils.py:710 +msgid "1 day ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:708 +msgid "1 hour ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:706 +msgid "1 minute ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:714 +msgid "1 month ago" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 +msgid "1 record will be exported" +msgstr "" + +#: frappe/tests/test_utils.py:705 +msgid "1 second ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:712 +msgid "1 week ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:716 +msgid "1 year ago" +msgstr "" + +#: frappe/tests/test_utils.py:709 +msgid "2 hours ago" +msgstr "" + +#: frappe/tests/test_utils.py:715 +msgid "2 months ago" +msgstr "" + +#: frappe/tests/test_utils.py:713 +msgid "2 weeks ago" +msgstr "" + +#: frappe/tests/test_utils.py:717 +msgid "2 years ago" +msgstr "" + +#: frappe/tests/test_utils.py:707 +msgid "3 minutes ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "" + +#: frappe/tests/test_utils.py:711 +msgid "5 days ago" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "" + +#: 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' +#: 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 "" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

Custom CSS Help

\n\n" +"

Notes:

\n\n" +"
    \n" +"
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" +"
  3. All values are given class value
  4. \n" +"
  5. All Section Breaks are given class section-break
  6. \n" +"
  7. All Column Breaks are given class column-break
  8. \n" +"
\n\n" +"

Examples

\n\n" +"

1. Left align integers

\n\n" +"
[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n" +"

1. Add border to sections except the last section

\n\n" +"
.section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
+".section-break:last-child { padding-bottom: 0px; border-bottom: 0px;  }
\n" +msgstr "" + +#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#, python-format +msgid "

Print Format Help

\n" +"
\n" +"

Introduction

\n" +"

Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.

\n" +"

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

\n" +"
\n" +"

References

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

Example

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

Common Functions

\n" +"\n" +"\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\n" +"
doc.get_formatted(\"[fieldname]\", [parent_doc])Get document value formatted as Date, Currency, etc. Pass parent doc for currency type fields.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Get value from another document.
\n" +msgstr "" + +#. Description of the 'Template' (Code) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +#, python-format +msgid "

Default Template

\n" +"

Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

\n" +"
{{ address_line1 }}<br>\n"
+"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
+"{{ city }}<br>\n"
+"{% if state %}{{ state }}<br>{% endif -%}\n"
+"{% if pincode %} PIN:  {{ pincode }}<br>{% endif -%}\n"
+"{{ country }}<br>\n"
+"{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n"
+"{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n"
+"{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n"
+"
" +msgstr "" + +#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "

Email Reply Example

\n\n" +"
Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
+"- Customer: {{ customer }}\n"
+"- Amount: {{ grand_total }}\n"
+"
\n\n" +"

How to get fieldnames

\n\n" +"

The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

\n\n" +"

Templating

\n\n" +"

Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

\n" +msgstr "" + +#. Content of the 'html_5' (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "
Or
" +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +#, python-format +msgid "
Message Example
\n\n" +"
<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
+"<!-- show last comment -->\n"
+"{% if comments %}\n"
+"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
+"<ul>\n"
+"<li>Customer: {{ doc.customer }}\n"
+"<li>Amount: {{ doc.grand_total }}\n"
+"</ul>\n"
+"
" +msgstr "" + +#. Content of the 'html_condition' (HTML) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "

Condition Examples:

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

Condition Examples:

\n" +"
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" +"
\n" +msgstr "" + +#. Content of the 'Condition description' (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "

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

For Example:

\n" +"

If you create a separate webform every year to capture feedback from employees add a \n" +" field named year in doctype and add a filter year = 2023

\n" +msgstr "" + +#. Description of the 'Context Script' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "

Set context before rendering a template. Example:

\n" +"

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

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

For example:

// here root_element is provided by default\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"New content\";\n"
+"
" +msgstr "" + +#: frappe/twofactor.py: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" +"

    \n" +"
  • frappe.db.get_value
  • \n" +"
  • frappe.db.get_list
  • \n" +"
  • frappe.session
  • \n" +"
  • frappe.utils.now_datetime
  • \n" +"
  • frappe.utils.get_datetime
  • \n" +"
  • frappe.utils.add_to_date
  • \n" +"
  • frappe.utils.now
  • \n" +"
\n" +"

Example:

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

" +msgstr "" + +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "" + +#. 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.
e.g. project" +msgstr "" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "" + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +msgid "A template already exists for field {0} of {1}" +msgstr "" + +#: frappe/utils/password_strength.py:169 +msgid "A word by itself is easy to guess." +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A9" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "" + +#. Label of the api_access (Section Break) field in DocType 'User' +#. 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 "" + +#. Label of the api_endpoint (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint" +msgstr "" + +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint Args" +msgstr "" + +#. 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 "" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "" + +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API Method" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Secret" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "ASC" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "" + +#. 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 "" + +#. 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 +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "" + +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Access Token" +msgstr "" + +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Access Token URL" +msgstr "" + +#: frappe/auth.py:491 +msgid "Access not allowed from this IP Address" +msgstr "" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "" + +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Account Deletion Settings" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "" + +#. 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:1872 +msgid "Action Failed" +msgstr "" + +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Action Label" +msgstr "" + +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "" + +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js: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 "" + +#. 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:267 +#: frappe/public/js/frappe/views/reports/query_report.js:295 +#: 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:211 +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: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 "" + +#: 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:703 +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:806 +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 "" + +#: 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:253 +msgid "Add to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 +msgid "Add to this activity by mailing to {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js: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' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +msgid "Added default log doctypes: {}" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "" + +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Additional Permissions" +msgstr "" + +#. Name of a DocType +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/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 "" + +#. 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 "" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "" + +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Title" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "" + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "" + +#. Description of the 'Address' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address and other legal information you may want to put in the footer." +msgstr "" + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js: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:1211 +msgid "Administrator Logged In" +msgstr "" + +#: frappe/core/doctype/user/user.py:1205 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "" + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" + +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Advanced" +msgstr "" + +#. Label of the advanced_control_section (Section Break) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Advanced Control" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js: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 "" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "" + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 +msgid "Allow" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "" + +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Auto Repeat" +msgstr "" + +#. Label of the allow_bulk_edit (Check) field in DocType 'DocField' +#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow Bulk Edit" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts " +msgstr "" + +#. 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 "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +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" +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 "" + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow events in timeline" +msgstr "" + +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow in Quick Entry" +msgstr "" + +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "" + +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" + +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow on Submit" +msgstr "" + +#. Label of the deny_multiple_sessions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow only one session per user" +msgstr "" + +#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow page break inside tables" +msgstr "" + +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 +msgid "Allow recording my first session to improve user experience" +msgstr "" + +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 +msgid "Allow sending usage data for improving applications" +msgstr "" + +#. Description of the 'Login After' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only after this hour (0-24)" +msgstr "" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "" + +#. Description of the 'Login with email link' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "" + +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "" + +#. Label of the allowed_file_extensions (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allowed File Extensions" +msgstr "" + +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "" + +#. Label of the allowed_modules_section (Section Break) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Allowed Modules" +msgstr "" + +#. Label of the allowed_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 "" + +#: frappe/core/doctype/user/user.py:1021 +msgid "Already Registered" +msgstr "" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:896 +msgid "Also adding the dependent currency field {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:909 +msgid "Also adding the status dependency field {0}" +msgstr "" + +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Alternative Email ID" +msgstr "" + +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "" + +#. Label of the add_draft_heading (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "" + +#. Label of the always_use_account_email_id_as_sender (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this email address as sender address" +msgstr "" + +#. Label of the always_use_account_name_as_sender_name (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this name as sender name" +msgstr "" + +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Amend" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amend Counter" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "" + +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amended Documents" +msgstr "" + +#. Label of the amended_from (Link) field in DocType '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:550 +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 "" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "" + +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "" + +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Anonymization Matrix" +msgstr "" + +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" + +#: frappe/public/js/frappe/request.js:189 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "" + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "" + +#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:36 +msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." +msgstr "" + +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "" + +#. Label of the app_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" +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 "" + +#. 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 +msgid "App {0} is not installed" +msgstr "" + +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Append Emails to Sent Folder" +msgstr "" + +#. Label of the append_to (Link) field in DocType 'Email Account' +#. Label of the append_to (Link) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Append To" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "" + +#. Description of the 'Append To' (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "" + +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Application Logo" +msgstr "" + +#. Label of the app_name (Data) field in DocType 'Installed Application' +#. Label of the app_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Application Name" +msgstr "" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "" + +#. 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 "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +msgid "Approval Required" +msgstr "" + +#. Label of a standard navbar item +#. Type: Route +#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 +#: frappe/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "" + +#: frappe/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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:965 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js: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 "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "" + +#: frappe/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 "" + +#: 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 "" + +#. 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: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 "" + +#: 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 "" + +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rules" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "" + +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 +msgid "Assignments" +msgstr "" + +#: 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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/print_utils.js:107 +msgid "Attempting to launch QZ Tray..." +msgstr "" + +#: 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 "" + +#. 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 "" + +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' +#. Label of a Card Break in the Integrations Workspace +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are: " +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "" + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Author" +msgstr "" + +#. Label of the authorization_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' +#: 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 "" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "" + +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authorize API Access" +msgstr "" + +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Authorize API Indexing Access" +msgstr "" + +#. Label of the authorize_google_calendar_access (Button) field in DocType +#. 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Authorize Google Calendar Access" +msgstr "" + +#. Label of the authorize_google_contacts_access (Button) field in DocType +#. 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Authorize Google Contacts Access" +msgstr "" + +#. Label of the authorize_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" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "" + +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "" + +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Auto Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "" + +#: 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 "" + +#. Label of the auto_reply (Section Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply" +msgstr "" + +#. Label of the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply Message" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "" + +#. Label of the follow_assigned_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are assigned to you" +msgstr "" + +#. Label of the follow_shared_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are shared with you" +msgstr "" + +#. Label of the follow_liked_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you Like" +msgstr "" + +#. Label of the follow_commented_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you comment on" +msgstr "" + +#. Label of the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you create" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py: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:774 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:768 +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 "" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "" + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:9 +msgctxt "Number system" +msgid "B" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B10" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "" + +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:85 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "" + +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Background Color" +msgstr "" + +#. Label of the background_image (Attach Image) field in DocType 'Web Page +#. Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Background Image" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js: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 "" + +#. 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/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' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +msgstr "" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65 +msgid "Bad Cron Expression" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'User' +#. Label of the banner_image (Attach Image) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Banner Image" +msgstr "" + +#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner is above the Top Menu Bar." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Barcode" +msgstr "" + +#. Label of the base_dn (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Base Distinguished Name (DN)" +msgstr "" + +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Base URL" +msgstr "" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js: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 "" + +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 +msgid "Bottom Center" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 +msgid "Bottom Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 +msgid "Bottom Right" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +msgstr "" + +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Brand Logo" +msgstr "" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +"has a transparent background and use the <img /> tag. Keep size as 200px x 30px" +msgstr "" + +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Breadcrumbs" +msgstr "" + +#. Label of the 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 "" + +#. 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" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/build/build.json +msgid "Build" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "" + +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bulk Actions" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1184 +msgid "Bulk Edit {0}" +msgstr "" + +#: 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 +#. 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 "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "" + +#: frappe/model/workflow.py:243 +msgid "Bulk {0} is enqueued in background." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Button" +msgstr "" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "" + +#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Rounded Corners" +msgstr "" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By \"Naming Series\" field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 +msgid "By default the title is used as meta title, adding a value here will override it." +msgstr "" + +#. 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 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By fieldname" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By script" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" +msgstr "" + +#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass Two Factor Auth for users who login from restricted IP Address" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "" + +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "CC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:76 +msgctxt "Email Recipients" +msgid "CC" +msgstr "" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json +msgid "CSS" +msgstr "" + +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "CSS Class" +msgstr "" + +#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "CSS selector for the element you want to highlight." +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "CSV" +msgstr "" + +#. Label of the 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 "" + +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "" + +#: frappe/sessions.py:35 +msgid "Cache Cleared" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Calendar" +msgstr "" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +msgstr "" + +#. Label of the call_to_action (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action" +msgstr "" + +#. Label of the call_to_action_url (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action URL" +msgstr "" + +#. Label of the 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 "" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "" + +#. Label of the campaign (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 "" + +#: 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' +#: frappe/core/doctype/user_type/user_type.json +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "" + +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "" + +#: frappe/model/rename_doc.py:366 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "" + +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js: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 "" + +#. 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 "" + +#: 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:1156 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:621 +msgid "Cannot access file path {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:109 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "" + +#: frappe/model/document.py:1012 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1026 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:98 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/custom/doctype/customize_form/customize_form.js:369 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:391 +msgid "Cannot delete standard document state." +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:347 +msgid "Cannot delete standard link. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "" + +#: frappe/utils/nestedset.py:299 +msgid "Cannot delete {0} as it has child nodes" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "" + +#: frappe/email/doctype/notification/notification.py: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:1032 +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 "" + +#: 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:1128 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1100 +msgid "Cannot link cancelled document: {0}" +msgstr "" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:971 +msgid "Cannot match column {0} with any field" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:175 +msgid "Cannot move row" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:921 +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 "" + +#: frappe/core/doctype/docshare/docshare.py:67 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +msgid "Cannot submit {0}." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 +msgid "Cannot update {0}" +msgstr "" + +#: frappe/model/db_query.py:1125 +msgid "Cannot use sub-query in order by" +msgstr "" + +#: frappe/model/db_query.py:1144 +msgid "Cannot use {0} in order/group by" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "" + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:263 +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 "" + +#. 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:290 +#: 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:499 +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 "" + +#: 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 "" + +#: frappe/website/doctype/website_settings/website_settings.js:147 +msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." +msgstr "" + +#. Description of the 'User must always select' (Check) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." +msgstr "" + +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "" + +#: frappe/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 "" + +#: 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 "" + +#. 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 "" + +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Child Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1647 +msgid "Child Table {0} for field {1}" +msgstr "" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:52 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:638 +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/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 "" + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/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 "" + +#: 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 "" + +#. 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 "" + +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 +msgid "Close" +msgstr "" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +msgid "Closed" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Cmd+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Code" +msgstr "" + +#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code Challenge" +msgstr "" + +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code challenge method" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:184 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2050 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "" + +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible Depends On" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js: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 "" + +#. Label of the column (Data) field in DocType 'Recorder Suggested Index' +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 +msgid "Column {0} already exist." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Column Name" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js: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 "" + +#. 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 "" + +#. 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.
\n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: frappe/core/doctype/user/user.js: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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Content (HTML)" +msgstr "" + +#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Content (Markdown)" +msgstr "" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "" + +#. Label of the content_type (Select) field in DocType '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 "" + +#: 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 "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: frappe/printing/page/print/print.js:620 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1096 +msgid "Could not find {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: frappe/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:527 +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:512 +msgid "Count Filter" +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 "" + +#. 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 "" + +#: 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:188 +#: frappe/public/js/frappe/views/reports/query_report.js:233 +msgid "Create Card" +msgstr "" + +#: 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' +#: 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 "" + +#: 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 "" + +#: frappe/www/login.html:162 +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 "" + +#: 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 "" + +#: 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: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 "" + +#: frappe/workflow/doctype/workflow/workflow.py:64 +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/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/views/treeview.js:393 +msgid "Creating {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron" +msgstr "" + +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron Format" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Currency" +msgstr "" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +msgstr "" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "" + +#. Label of the current_job_id (Link) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Current Job ID" +msgstr "" + +#. Label of the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Current Value" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: frappe/public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "" + +#. Label of the custom_base_url (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Custom Base URL" +msgstr "" + +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Custom Block Name" +msgstr "" + +#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' +#. Label of the custom_blocks (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Custom Blocks" +msgstr "" + +#. Label of the css (Code) field in DocType 'Print Format' +#. Label of the custom_css (Code) field in DocType 'Web Form' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Custom CSS" +msgstr "" + +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Custom Configuration" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. Label of the custom_select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Custom Document Types (Select Permission)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:220 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Custom Footer" +msgstr "" + +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "" + +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Custom Group Search" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:190 +#: frappe/printing/page/print_format_builder/print_format_builder.js:728 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 +msgid "Custom HTML" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. Label of the custom_html_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom HTML Help" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "" + +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Custom Label" +msgstr "" + +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "" + +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Sidebar Menu" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." +msgstr "" + +#. 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 "" + +#: 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 "" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Cyan" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "DELETE" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "DESC" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#. 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 +#: 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 "" + +#: 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 "" + +#. 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 "" + +#: 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 "" + +#. 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 "" + +#. 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1389 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "" + +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +msgid "Defaults" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of 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: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 "" + +#: 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: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 "" + +#: 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 "" + +#: frappe/public/js/frappe/list/list_view.js:2038 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Deleted" +msgstr "" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "" + +#: frappe/desk/reportview.py:606 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/desk/reportview.py:583 +msgid "Deleting {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:741 +msgid "Deleting {0}..." +msgstr "" + +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Deletion Steps " +msgstr "" + +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "" + +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js: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:310 +#: 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 "" + +#. 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/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 "" + +#: 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 "" + +#. 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 "" + +#: 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 "" + +#: 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:1189 +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 "" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "" + +#. Label of the doc_status (Select) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Doc Status" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
{0}
\n" +"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n" +"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" +"\t\t\t\t" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' +#. Name of a DocType +#. Group in Module Def's connections +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1577 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "DocType Event" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "" + +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +msgid "DocType View" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:656 +msgid "DocType can not be merged" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:650 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:79 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "" + +#. Description of the 'Document Type' (Link) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "" + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1028 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:669 +msgid "Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1022 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" +msgstr "" + +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Actions" +msgstr "" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Document Linking" +msgstr "" + +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1211 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1231 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1194 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1200 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the 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:477 +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:52 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:148 +msgid "Document Type is not importable" +msgstr "" + +#: frappe/permissions.py:144 +msgid "Document Type is not submittable" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Document Type to Track" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +msgstr "" + +#. Label of the select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types (Select Permissions Only)" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types and Permissions" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1943 +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 "" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: frappe/client.py:430 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Documentation Link" +msgstr "" + +#. Label of the documentation_url (Data) field in DocType 'DocField' +#. Label of the documentation_url (Data) field in DocType 'Module Onboarding' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Documentation URL" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Domain" +msgstr "" + +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Domain Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "" + +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Don't Override Status" +msgstr "" + +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Don't Send Emails" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html: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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:835 +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:57 +msgid "Download Your Data" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "" + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 +msgid "Draft" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue: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 +#. 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 +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: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 "" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Duration" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "" + +#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js: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 "" + +#: 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 "" + +#: frappe/public/js/frappe/form/toolbar.js:616 +msgid "Edit DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1829 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js: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 "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 +msgid "Edit Heading" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 +msgid "Edit to add content" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js: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:672 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js: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 "" + +#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "" + +#. Label of the element_selector (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Element Selector" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType '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:736 +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:578 +msgid "Email Account {0} Disabled" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 +msgid "Email Address" +msgstr "" + +#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Email Address whose Google Contacts are to be synced." +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "" + +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Footer Address" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#. 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 "" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "" + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:936 +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 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 "" + +#. 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 "" + +#. 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 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 +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 "" + +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable Google indexing" +msgstr "" + +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 +msgid "Enable Incoming" +msgstr "" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "" + +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 +msgid "Enable Outgoing" +msgstr "" + +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Password Policy" +msgstr "" + +#. Label of the enable_prepared_report (Check) field in DocType 'Role +#. Permission for Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Enable Prepared Report" +msgstr "" + +#. Label of the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Print Server" +msgstr "" + +#. Label of the enable_push_notification_relay (Check) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of the enable_rate_limit (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Enable Rate Limit" +msgstr "" + +#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Raw Printing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +msgstr "" + +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Scheduled Jobs" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +msgstr "" + +#. Label of the enable_social_login (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Enable Social Login" +msgstr "" + +#. 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 "" + +#. 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 '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 "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:1012 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'DocType' +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enables Calendar and Gantt views." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:295 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "" + +#. Description of a DocType +#: 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 "" + +#: 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 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 +msgid "Endpoints" +msgstr "" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +msgid "Ensure the user and group search paths are correct." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js: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 "" + +#. Description of the 'User Defaults' (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "" + +#. Description of the 'Static Parameters' (Table) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" +msgstr "" + +#. Description of the 'Message Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for message" +msgstr "" + +#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for receiver nos" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/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 "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py: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 "" + +#: frappe/email/doctype/email_account/email_account.py:672 +msgid "Error while connecting to email account {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:732 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:806 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:816 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: 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' +#. Name of a DocType +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "" + +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Event Frequency" +msgstr "" + +#. Label of the event_participants (Table) field in DocType 'Event' +#. Name of a DocType +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "" + +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Event Reminders" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 +msgid "Event Synced with Google Calendar." +msgstr "" + +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json +msgid "Event Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" + +#: frappe/desk/doctype/event/event.py: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 "" + +#. Label of the exact_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Exact Copies" +msgstr "" + +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "" + +#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Example: 00001" +msgstr "" + +#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "" + +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Exception" +msgstr "" + +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json +msgid "Execute" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: frappe/public/js/frappe/ui/dropdown_console.js: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:2069 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "" + +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2050 +#: 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 "" + +#. 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. Description of the 'Export without main header' (Check) field in DocType +#. 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export the data without any header notes and column descriptions" +msgstr "" + +#. Label of the export_without_main_header (Check) field in DocType 'Data +#. Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export without main header" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "" + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Expose Recipients" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression (old style)" +msgstr "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +msgstr "" + +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Extra Parameters" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Facebook" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Failed" +msgstr "" + +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "" + +#. Label of the failed_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Failed Job Count" +msgstr "" + +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "" + +#. Label of the failed_logins (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Logins (Last 30 days)" +msgstr "" + +#: frappe/model/workflow.py: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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/api/v2.py:46 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "" + +#: frappe/model/virtual_doctype.py:63 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py: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 "" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:459 +msgid "Failure" +msgstr "" + +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "FavIcon" +msgstr "" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "" + +#. 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: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 "" + +#: 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 "" + +#: frappe/database/database.py:892 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: frappe/desk/form/meta.py:208 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1754 +msgid "Field {0} not found." +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:270 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1076 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: frappe/database/schema.py:127 frappe/database/schema.py:363 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: frappe/database/schema.py:353 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1907 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js: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 "" + +#: 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' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldtype" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:588 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "File" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue: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 "" + +#. 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 +msgid "File Information" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "" + +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: frappe/core/doctype/file/file.py:624 +msgid "File name cannot have {0}" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Files" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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 "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#: 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 -
{0}" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "" + +#. Label of the google_calendar_id (Data) field in DocType 'Event' +#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Google Calendar ID" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "" + +#. 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 +msgid "Google Drive Picker" +msgstr "" + +#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker Enabled" +msgstr "" + +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Google Font" +msgstr "" + +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Meet Link" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Settings" +msgstr "" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: frappe/utils/csvutils.py:231 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "" + +#. Label of the google_preview (HTML) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Google Snippet Preview" +msgstr "" + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Gray" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Green" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "" + +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:127 +msgid "Grid Shortcuts" +msgstr "" + +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Group" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "" + +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Based On" +msgstr "" + +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Type" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Group Node" +msgstr "" + +#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Group Object Class" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +msgid "Grouped by {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "HEAD" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm:ss" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the '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' +#. 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' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/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 "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "HTML Editor" +msgstr "" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML for header section. Optional" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Half Yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "" + +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Has Attachment" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Has Next Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "" + +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "" + +#: frappe/templates/signup.html:19 +msgid "Have an account? Login" +msgstr "" + +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Header" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:63 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "" + +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Header, Robots" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Headers" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json +msgid "Help Article" +msgstr "" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json +msgid "Help Category" +msgstr "" + +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 +msgid "Help Dropdown" +msgstr "" + +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Help HTML" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "" + +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Helpful" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1784 +msgid "Here's your tracking URL" +msgstr "" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Hidden" +msgstr "" + +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hidden Fields" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +msgid "Hide" +msgstr "" + +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Hide Block" +msgstr "" + +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Border" +msgstr "" + +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Buttons" +msgstr "" + +#. Label of the hide_cta (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Hide CTA" +msgstr "" + +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Hide Copy" +msgstr "" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Days" +msgstr "" + +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "" + +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" +msgstr "" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" + +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "" + +#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "" + +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Seconds" +msgstr "" + +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Hide Sidebar, Menu, and Comments" +msgstr "" + +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1704 +msgid "Hide Tags" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Hide descendant records of For Value." +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:286 +msgid "Hide details" +msgstr "" + +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "" + +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide footer signup" +msgstr "" + +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Higher priority rule will be applied first" +msgstr "" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "" + +#: frappe/www/update-password.html:276 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js: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 "" + +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Home Page" +msgstr "" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:330 +#: frappe/core/doctype/file/test_file.py:332 +#: frappe/core/doctype/file/test_file.py:396 +msgid "Home/Test Folder 1" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:385 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:341 +msgid "Home/Test Folder 2" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +msgid "Hourly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Hourly Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hourly rate limit for generating password reset links" +msgstr "" + +#. 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 "" + +#. 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 "" + +#: 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 "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "" + +#. Description of the 'Field Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "" + +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "IMAP Details" +msgstr "" + +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' +#. Name of a DocType +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "" + +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +msgid "IP Address" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon" +msgstr "" + +#. Description of the 'Icon' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon will appear on the button" +msgstr "" + +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Identity Details" +msgstr "" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "" + +#. Description of the 'Apply Strict User Permissions' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" +msgstr "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "If Checked workflow status will not override status in list view" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:66 +msgid "If Owner" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:25 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "If disabled, this role will be removed from all users." +msgstr "" + +#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth +#. Enabled' (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" +msgstr "" + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "" + +#. Description of the 'Bypass restricted IP Address check If Two Factor Auth +#. Enabled' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" +msgstr "" + +#. Description of the 'Track Changes' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, changes to the document are tracked and shown in timeline" +msgstr "" + +#. Description of the 'Track Views' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "" + +#. Description of the 'Track Seen' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "" + +#. Description of the 'Send System Notification' (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "" + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "" + +#. Description of the 'Bypass Two Factor Auth for users who login from +#. restricted IP Address' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "" + +#. Description of the 'Notify Users On Every Login' (Check) field in DocType +#. 'Note' +#: frappe/desk/doctype/note/note.json +msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." +msgstr "" + +#. Description of the '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' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "" + +#. Description of the 'Currency Precision' (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If not set, the currency precision will depend on number format" +msgstr "" + +#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." +msgstr "" + +#. Description of the 'User Type' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "If user is the owner" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: frappe/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' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "If you set this, this Item will come in a drop-down under the selected parent." +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "" + +#. Description of the 'Source Text' (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore User Permissions" +msgstr "" + +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore XSS Filter" +msgstr "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Ignore attachments over this size" +msgstr "" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "" + +#: frappe/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 +msgid "Illegal SQL Query" +msgstr "" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Image" +msgstr "" + +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Image Field" +msgstr "" + +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Height" +msgstr "" + +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Image Link" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Width" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1506 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1508 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: frappe/core/doctype/file/file.js:107 +msgid "Image optimized" +msgstr "" + +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#: frappe/public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js: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' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "" + +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1766 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Import Data" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "" + +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File Errors and Warnings" +msgstr "" + +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log" +msgstr "" + +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log Preview" +msgstr "" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import from Google Sheets" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In Days" +msgstr "" + +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Filter" +msgstr "" + +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Global Search" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "" + +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In List View" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" + +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Standard Filter" +msgstr "" + +#. Description of the 'Font Size' (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "In points. Default is 9." +msgstr "" + +#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In seconds" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Include Name Field" +msgstr "" + +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Include Web View Link in Email" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1592 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1584 +msgid "Include indentation" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming (POP/IMAP) Settings" +msgstr "" + +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Server" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: frappe/auth.py:255 +msgid "Incomplete login details" +msgstr "" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "" + +#: frappe/utils/password.py:101 +msgid "Incorrect User or Password" +msgstr "" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: frappe/model/document.py:1542 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1544 +msgid "Incorrect value:" +msgstr "" + +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py: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 "" + +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Index Web Pages for Search" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing authorization code" +msgstr "" + +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing refresh token" +msgstr "" + +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Info" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Initial Sync Count" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "" + +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "" + +#: frappe/core/doctype/data_import/data_import_list.js:35 +msgid "Insert" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1822 +msgid "Insert After" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:244 +msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:384 +msgid "Insert Column Before {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. Name of a DocType +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Installed Apps" +msgstr "" + +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "" + +#: frappe/permissions.py:818 +msgid "Insufficient Permission Level for {0}" +msgstr "" + +#: frappe/database/query.py:376 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:360 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:331 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:445 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Group in User's connections +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Integrations" +msgstr "" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Integrations can use this field to set email delivery status" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Intro Video URL" +msgstr "" + +#. Description of the 'Company Introduction' (Text Editor) field in DocType +#. 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Introduce your company to the website visitor." +msgstr "" + +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Introduction" +msgstr "" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Introductory information for the Contact Us Page" +msgstr "" + +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Introspection URI" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js: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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:513 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:159 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:87 +msgid "Invalid Condition: {}" +msgstr "" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "" + +#: frappe/utils/data.py:136 frappe/utils/data.py:299 +msgid "Invalid Date" +msgstr "" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: frappe/database/query.py:102 +msgid "Invalid DocType: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1272 +msgid "Invalid Fieldname" +msgstr "" + +#: frappe/core/doctype/file/file.py:209 +msgid "Invalid File URL" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +msgid "Invalid Link" +msgstr "" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "" + +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "" + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "" + +#: frappe/model/naming.py:101 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Invalid Operation" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1641 +#: frappe/core/doctype/doctype/doctype.py:1650 +msgid "Invalid Option" +msgstr "" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +msgid "Invalid Output Format" +msgstr "" + +#: frappe/model/base_document.py:116 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:195 +msgid "Invalid Parameters." +msgstr "" + +#: 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 "" + +#: frappe/utils/__init__.py:122 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1214 +msgid "Invalid Table Fieldname" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +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/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:116 +msgid "Invalid Webhook Secret" +msgstr "" + +#: frappe/desk/reportview.py:186 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:393 +msgid "Invalid column" +msgstr "" + +#: frappe/model/document.py:1015 frappe/model/document.py:1029 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: frappe/utils/data.py:2186 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1085 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "" + +#: frappe/database/query.py:182 +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 +msgid "Invalid json added in the custom options: {0}" +msgstr "" + +#: frappe/model/naming.py:490 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: frappe/app.py:324 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +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 "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 +msgid "Invalid username or password" +msgstr "" + +#: frappe/model/naming.py: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 "" + +#: frappe/printing/page/print/print.js:614 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1564 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "" + +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Calendar and Gantt" +msgstr "" + +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" +msgstr "" + +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Is Completed" +msgstr "" + +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Is Custom" +msgstr "" + +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Custom Field" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Is Default" +msgstr "" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "" + +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Is Optional State" +msgstr "" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Is Primary Contact" +msgstr "" + +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Mobile" +msgstr "" + +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Phone" +msgstr "" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "" + +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Is Public" +msgstr "" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1515 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 +msgid "Is Query Report" +msgstr "" + +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "" + +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +msgid "Is Standard" +msgstr "" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:39 +msgid "Is Submittable" +msgstr "" + +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Is System Generated" +msgstr "" + +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "" + +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Is Table Field" +msgstr "" + +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "" + +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Is Unique" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Virtual" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "" + +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "" + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "" + +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "JS Message" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON" +msgstr "" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +msgid "Javascript" +msgstr "" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "" + +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job ID" +msgstr "" + +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "" + +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Info" +msgstr "" + +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "" + +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Status" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "" + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:395 +#: frappe/public/js/frappe/form/toolbar.js:830 +msgid "Jump to field" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Kanban" +msgstr "" + +#. Name of a DocType +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:498 +msgid "Kanban Board" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "" + +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType '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 "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "" + +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Auth" +msgstr "" + +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Custom Settings" +msgstr "" + +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Email Field" +msgstr "" + +#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP First Name Field" +msgstr "" + +#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group" +msgstr "" + +#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Field" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Mappings" +msgstr "" + +#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Member attribute" +msgstr "" + +#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Last Name Field" +msgstr "" + +#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Middle Name Field" +msgstr "" + +#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Mobile Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "" + +#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Phone Field" +msgstr "" + +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search String" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "" + +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search and Paths" +msgstr "" + +#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Security" +msgstr "" + +#. Label of the ldap_server_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Settings" +msgstr "" + +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "LDAP Settings" +msgstr "" + +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP User Creation and Mapping" +msgstr "" + +#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Username Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "" + +#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Groups" +msgstr "" + +#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Users" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js: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 "" + +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "" + +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Label and Type" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:30 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#: 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 "" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "" + +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Active" +msgstr "" + +#. Label of the last_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" +msgstr "" + +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Last Heartbeat" +msgstr "" + +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 +msgid "Last Modified On" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 +msgid "Last Month" +msgstr "" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 +msgid "Last Quarter" +msgstr "" + +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Reset Password Key Generated On" +msgstr "" + +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Last Sync On" +msgstr "" + +#. Label of the last_synced_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 "" + +#: 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 "" + +#: 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 "" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 +msgid "Last Week" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 +msgid "Last Year" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:186 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:722 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Left" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 +msgctxt "alignment" +msgid "Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Center" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" +msgstr "" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: frappe/database/schema.py:134 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Let us continue with the onboarding" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 +msgid "Let's Get Started" +msgstr "" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 +msgid "Let's take you back to onboarding" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js: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 "" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "" + +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Image" +msgstr "" + +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 +msgid "Letter Head Name" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:48 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head in HTML" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "" + +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "License Type" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Light" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Light Blue" +msgstr "" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "" + +#. 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' +#: frappe/website/doctype/blog_settings/blog_settings.json +msgid "Like limit per hour" +msgstr "" + +#: frappe/templates/includes/likes/likes.py:30 +msgid "Like on {0}: {1}" +msgstr "" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "" + +#: 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 "" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Limit" +msgstr "" + +#. 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" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: 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 "" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "" + +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Count" +msgstr "" + +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Details" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link DocType" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "" + +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link Fieldname" +msgstr "" + +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Link Filters" +msgstr "" + +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Name" +msgstr "" + +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Title" +msgstr "" + +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:414 +msgid "Link To" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:350 +msgid "Link To in Row" +msgstr "" + +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 +msgid "Link Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js: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' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +msgid "Linked" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#. 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 "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "List" +msgstr "" + +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "List / Search Settings" +msgstr "" + +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List Columns" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "" + +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1846 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js: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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js: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 "" + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "" + +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Log Data" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Log DocType" +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "" + +#. Label of the log_index (Int) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Log Index" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: frappe/handler.py:118 +msgid "Logged Out" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 +msgid "Login" +msgstr "" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "" + +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login Methods" +msgstr "" + +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "" + +#: frappe/www/login.py:152 +msgid "Login To {0}" +msgstr "" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:367 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:339 frappe/auth.py:342 +msgid "Login not allowed at this time" +msgstr "" + +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "" + +#: frappe/twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "" + +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "" + +#: frappe/www/login.html:126 frappe/www/login.html:210 +msgid "Login with Email Link" +msgstr "" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "" + +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link" +msgstr "" + +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link expiry (in minutes)" +msgstr "" + +#: frappe/auth.py:144 +msgid "Login with username and password is not allowed." +msgstr "" + +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "" + +#: frappe/core/doctype/user/user.js:197 +msgid "Logout All Sessions" +msgstr "" + +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Logout All Sessions on Password Reset" +msgstr "" + +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Logout From All Devices After Changing Password" +msgstr "" + +#. Group in User's connections +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Logs" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json +msgid "Logs to Clear" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Long Text" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section" +msgstr "" + +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (HTML)" +msgstr "" + +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (Markdown)" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make Attachments Public by Default" +msgstr "" + +#. Description of the 'Disable Username/Password Login' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "" + +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Mandatory" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Mandatory Depends On" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:473 +msgid "Mandatory Information missing:" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:120 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:125 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:234 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:924 +msgid "Mapping column {0} to field {1}" +msgstr "" + +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Bottom" +msgstr "" + +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "" + +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Right" +msgstr "" + +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "" + +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 +msgid "Mark all as read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#. Option for the '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" +"
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" +"
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" +msgstr "" + +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Rule" +msgstr "" + +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Naming Series" +msgstr "" + +#: frappe/model/naming.py:260 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json +msgid "Navbar Settings" +msgstr "" + +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template" +msgstr "" + +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template Values" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1237 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1244 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:319 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: frappe/model/document.py:793 +msgid "Negative Value" +msgstr "" + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js: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 "" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:62 +msgid "New Comment on {0}: {1}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:295 +#: frappe/printing/page/print/print.js:342 +msgid "New Custom Print Format" +msgstr "" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "New Document Form" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +msgid "New Kanban Board" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 +msgid "New Mention on {0}" +msgstr "" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "" + +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:762 +msgid "New Name" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:67 +msgid "New Newsletter" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#. 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 "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "" + +#: frappe/www/update-password.html:79 +msgid "New password cannot be same as old password" +msgstr "" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "New users will have to be manually registered by system managers." +msgstr "" + +#. Description of the 'Set Value' (Small Text) field in DocType 'Property +#. Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "New value to be set" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js: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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:394 +msgid "New {0} Created" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:386 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:391 +msgid "New {0} {1} created" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +msgid "New {0}: {1}" +msgstr "" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: frappe/core/doctype/user/user.py:802 +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 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "" + +#. Label of the next_actions_html (HTML) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Next Actions HTML" +msgstr "" + +#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Next Execution" +msgstr "" + +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Form Tour" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Next Schedule Date" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Next State" +msgstr "" + +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Step Condition" +msgstr "" + +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Next Sync Token" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next on Click" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py: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 "" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#: frappe/www/third_party_apps.html:56 +msgid "No Active Sessions" +msgstr "" + +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "No Copy" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py: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 "" + +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: frappe/printing/page/print/print.js: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 "" + +#: frappe/model/naming.py:481 +msgid "No Name Specified for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1743 +msgid "No Permissions Specified" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:707 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:862 +msgid "No Printer is Available." +msgstr "" + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "" + +#: frappe/core/doctype/user/user.py:803 +msgid "No Roles Specified" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:672 +msgid "No Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "" + +#: frappe/email/doctype/notification/notification.js:229 +msgid "No alerts for today" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "" + +#: frappe/model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:378 +msgid "No comments yet" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet. " +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +msgid "No contacts linked to document" +msgstr "" + +#: frappe/desk/query_report.py:342 +msgid "No data to export" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:246 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 +msgid "No email account associated with the User. Please add an account under User > Email Inbox." +msgstr "" + +#: frappe/core/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 "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "" + +#: frappe/desk/form/utils.py:111 +msgid "No further records" +msgstr "" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:161 +msgid "No more items to display" +msgstr "" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "" + +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Requested SMS" +msgstr "" + +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "No of Rows (Max 500)" +msgstr "" + +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Sent SMS" +msgstr "" + +#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +msgid "No records present in {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 +msgid "No records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:129 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js: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 "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:256 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" + +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Non Negative" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "" + +#. Option for the '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 "" + +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Copies" +msgstr "" + +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "" + +#: frappe/core/doctype/user/user.py:1016 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "" + +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: frappe/app.py:374 frappe/www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "" + +#: frappe/__init__.py: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 "" + +#: frappe/desk/query_report.py:542 +msgid "Not Permitted to read {0}" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/email/doctype/newsletter/newsletter_list.js:9 +msgid "Not Sent" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: frappe/core/doctype/user/user.py:264 +msgid "Not a valid User Image." +msgstr "" + +#: frappe/model/workflow.py:114 +msgid "Not a valid Workflow Action" +msgstr "" + +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "" + +#: frappe/permissions.py:360 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:595 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:335 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "" + +#: frappe/permissions.py:212 +msgid "Not allowed via controller permission check" +msgstr "" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:330 +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/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 "" + +#: frappe/public/js/frappe/list/list_view.js:50 +msgid "Not permitted to view {0}" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#. 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 "" + +#: frappe/core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +msgstr "" + +#. Description of the 'sb0' (Section Break) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "" + +#. Description of the 'Allow only one session per user' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "" + +#: frappe/core/doctype/user/user.js: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 "" + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js: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 "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. 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 "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 +msgid "Notification Settings" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py: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 "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "" + +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify Users On Every Login" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Notify by Email" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "" + +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied" +msgstr "" + +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied for (in mins)" +msgstr "" + +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify users with a popup when they log in" +msgstr "" + +#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:615 +msgid "Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Number Card Name" +msgstr "" + +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:645 +msgid "Number Cards" +msgstr "" + +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json +msgid "Number Format" +msgstr "" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "" + +#. Label of the 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" +msgstr "" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:169 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'DocField' +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "" + +#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "" + +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Client" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "OAuth Client ID" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "" + +#: frappe/email/oauth.py:30 +msgid "OAuth Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Provider Settings" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:250 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "" + +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP Issuer Name" +msgstr "" + +#: frappe/twofactor.py:445 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: frappe/twofactor.py:464 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Office 365" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "" + +#. Label of the offset_x (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset X" +msgstr "" + +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset Y" +msgstr "" + +#: frappe/www/update-password.html:38 +msgid "Old Password" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:412 +msgid "Old and new fieldnames are same." +msgstr "" + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +msgstr "" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Authorization" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "" + +#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js: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 "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Onboarding Status" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:42 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: frappe/www/complete_signup.html:7 +msgid "One Last Step" +msgstr "" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: frappe/recorder.py:316 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Only Allow Edit For" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1620 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Only Send Records Updated in Last X Hours" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#. 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 +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 "" + +#: frappe/core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: frappe/desk/reportview.py:357 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:328 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: 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 "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Open" +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "" + +#: frappe/templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "" + +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Open Reference Document" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js: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 "" + +#. Description of the 'Quick Entry' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js: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 "" + +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "" + +#: frappe/www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js: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 "" + +#. 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' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "" + +#: frappe/utils/data.py:2117 +msgid "Operator must be one of {0}" +msgstr "" + +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 +msgid "Optimize" +msgstr "" + +#: frappe/core/doctype/file/file.js:105 +msgid "Optimizing image..." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1638 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. Description of the 'CC' (Code) field in DocType 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Optional: Always send to these ids. Each Email Address on a new row" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Optional: The alert will be sent if this expression is true" +msgstr "" + +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (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 "" + +#: 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 "" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1660 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1383 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: frappe/model/base_document.py:870 +msgid "Options not set for link field {0}" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Orange" +msgstr "" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "" + +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History Heading" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:28 +msgid "Orientation" +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' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 +msgid "Other" +msgstr "" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing (SMTP) Settings" +msgstr "" + +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Server" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "" + +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Output" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 +msgid "Owner" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "PATCH" +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 +msgid "PDF" +msgstr "" + +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Height (in mm)" +msgstr "" + +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "" + +#. Label of the pdf_page_width (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Width (in mm)" +msgstr "" + +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: frappe/printing/page/print/print.js: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 the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "PID" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "POST" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "PUT" +msgstr "" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 +msgid "Package" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json +msgid "Package Import" +msgstr "" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "" + +#. Label of the page (Link) field in DocType 'Custom Role' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Page" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Page Break" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Builder" +msgstr "" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" + +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 +msgid "Page Number" +msgstr "" + +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "" + +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "" + +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Page Title" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 +msgid "Page height and width cannot be zero" +msgstr "" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "" + +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Parent DocType" +msgstr "" + +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Parent Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:65 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Element Selector" +msgstr "" + +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:933 +msgid "Parent Field (Tree)" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:939 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Parent Label" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1197 +msgid "Parent Missing" +msgstr "" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js: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 "" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Partial" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "" + +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json +msgid "Participants" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js: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 "" + +#: frappe/core/doctype/user/user.py:1079 +msgid "Password Email Sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:457 +msgid "Password Reset" +msgstr "" + +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Password Reset Link Generation Limit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:880 +msgid "Password cannot be filtered" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "" + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1078 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:166 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:258 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: frappe/core/doctype/user/user.py:869 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: frappe/www/update-password.html:80 +msgid "Passwords do not match" +msgstr "" + +#: frappe/core/doctype/user/user.js:205 +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 "" + +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "" + +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to CA Certs File" +msgstr "" + +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to Server Certificate" +msgstr "" + +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to private Key File" +msgstr "" + +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Payload Count" +msgstr "" + +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType '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 "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Approval" +msgstr "" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "" + +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Period" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Perm Level" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:861 +msgid "Permanently Submit {0}?" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:733 +msgid "Permanently delete {0}?" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:84 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Permission Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' +#. Label of a Card Break in the Users Workspace +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js: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 "" + +#: 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 +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Permitted Roles" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/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 "" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "" + +#: frappe/utils/__init__.py:121 +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 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Pink" +msgstr "" + +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:546 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "" + +#: frappe/email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:309 +msgid "Please Set Chart" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:84 +msgid "Please Update SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +msgid "Please add a subject to your email" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: frappe/core/doctype/user/user.py:1061 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:76 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:64 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:19 +msgid "Please check OpenID Configuration URL" +msgstr "" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: frappe/model/base_document.py:946 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1059 +msgid "Please check your email for verification" +msgstr "" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "" + +#: frappe/twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: frappe/twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: frappe/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 "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: frappe/desk/form/meta.py:214 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:18 +msgid "Please duplicate this to make changes" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: frappe/integrations/google_oauth.py:53 +msgid "Please enable {} before continuing." +msgstr "" + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +msgid "Please enter Access Token URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +msgid "Please enter Authorize URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +msgid "Please enter Base URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:8 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +msgid "Please enter Redirect URL" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "" + +#: frappe/www/update-password.html: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 "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: frappe/www/update-password.html:117 +msgid "Please enter your new password." +msgstr "" + +#: frappe/www/update-password.html:110 +msgid "Please enter your old password." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:31 +msgid "Please login to post a comment." +msgstr "" + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: frappe/model/document.py:987 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:535 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "" + +#: frappe/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 "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1703 +msgid "Please save the report first" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:30 +msgid "Please select DocType first" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:112 +msgid "Please select Minimum Password Score" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/model/rename_doc.py:685 +msgid "Please select a valid csv file with data" +msgstr "" + +#: frappe/utils/data.py:299 +msgid "Please select a valid date filter" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: frappe/model/db_query.py:1140 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Please select the LDAP Directory being used" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: frappe/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 "" + +#: frappe/printing/page/print/print.js:549 +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 +msgid "Please set filters" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: frappe/model/naming.py:572 +msgid "Please set the document name" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py: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 "" + +#: frappe/email/doctype/email_account/email_account.py:434 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: frappe/integrations/google_oauth.py:56 +msgid "Please update {} before continuing." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Please use a valid LDAP search filter" +msgstr "" + +#: frappe/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 "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "" + +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover Element" +msgstr "" + +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover or Modal Description" +msgstr "" + +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Port" +msgstr "" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json +msgid "Portal Settings" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:31 +msgid "Portrait" +msgstr "" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal Code" +msgstr "" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:264 +msgid "Posts by {0}" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:256 +msgid "Posts filed under {0}" +msgstr "" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Precision" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1400 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Billing Address" +msgstr "" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "" + +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Prefix" +msgstr "" + +#. Name of a DocType +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 +msgid "Prepared Report" +msgstr "" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: frappe/desk/query_report.py:306 +msgid "Prepared report render failed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:472 +msgid "Preparing Report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:428 +msgid "Prepend the template to the email message" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:141 +msgid "Press Enter to save" +msgstr "" + +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/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 "" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "" + +#. 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 the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Preview of generated names" +msgstr "" + +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js: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' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Primary Color" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js: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 "" + +#: frappe/public/js/frappe/list/list_view.js:2019 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js: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 "" + +#. Label of a Link in the Tools Workspace +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Builder Beta" +msgstr "" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Help" +msgstr "" + +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Type" +msgstr "" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" +msgstr "" + +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide If No Value" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:165 +msgid "Print Language" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:197 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js: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 the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' +#. Name of a DocType +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style Name" +msgstr "" + +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Style Preview" +msgstr "" + +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width" +msgstr "" + +#. Description of the 'Print Width' (Data) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width of the field, if the field is a column in a table" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "" + +#: frappe/printing/page/print/print.js:830 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:807 +msgid "Printer Mapping" +msgstr "" + +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Printer Name" +msgstr "" + +#: frappe/printing/page/print/print.js:799 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:548 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "" + +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json +msgid "Priority" +msgstr "" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 +msgid "Private" +msgstr "" + +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "" + +#. Description of the 'Auto Reply Message' (Text Editor) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js: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:
CSV
JPG
PNG" +msgstr "" + +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Provider" +msgstr "" + +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "" + +#. 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 "" + +#. 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' +#. 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 "" + +#. Label of the published_on (Date) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Published On" +msgstr "" + +#: frappe/website/doctype/blog_post/templates/blog_post.html:59 +msgid "Published on" +msgstr "" + +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Publishing Dates" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +msgstr "" + +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Pull from Google Calendar" +msgstr "" + +#. Label of the pull_from_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Pull from Google Contacts" +msgstr "" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Purple" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Push to Google Calendar" +msgstr "" + +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Push to Google Contacts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Python" +msgstr "" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:206 +msgid "QZ Tray Failed: " +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "" + +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json +msgid "Query" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +msgstr "" + +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Query Options" +msgstr "" + +#. Label of the query_parameters (Table) field in DocType 'Connected App' +#. Name of a DocType +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:495 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Queue" +msgstr "" + +#: frappe/utils/background_jobs.py: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 the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Queue in Background (BETA)" +msgstr "" + +#: frappe/utils/background_jobs.py:554 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/email/doctype/newsletter/newsletter.js:208 +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Queued" +msgstr "" + +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued At" +msgstr "" + +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: frappe/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 "" + +#: 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 "" + +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Quick Entry" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" + +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Quick List Filter" +msgstr "" + +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Quick Lists" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:304 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "RAW Information Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Random" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Rate Limiting" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'Blog +#. Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json +msgid "Rate Limits" +msgstr "" + +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Rating" +msgstr "" + +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:89 +msgid "Raw Commands" +msgstr "" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "" + +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Raw Printing" +msgstr "" + +#: frappe/printing/page/print/print.js:165 +msgid "Raw Printing Setting" +msgstr "" + +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:728 +msgid "Re:" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:600 +#: frappe/public/js/frappe/views/communication.js:364 +msgid "Re: {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Read" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only Depends On" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Read Only Depends On (JS)" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of the read_time (Int) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Read Time" +msgstr "" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: frappe/utils/safe_exec.py:95 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +msgstr "" + +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:889 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:509 +msgid "Rebuild Tree" +msgstr "" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "" + +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Document Field" +msgstr "" + +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Role" +msgstr "" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +msgid "Recents" +msgstr "" + +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Recipient" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "" + +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json +msgid "Recipients" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1608 +msgid "Recursive Fetch From" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Red" +msgstr "" + +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Redirect HTTP Status" +msgstr "" + +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Redirect URI" +msgstr "" + +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Redirect URI Bound To Auth Code" +msgstr "" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "" + +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Redirect URL" +msgstr "" + +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" + +#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:527 +msgid "Redo" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:535 +msgid "Redo last action" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "" + +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Reference DocType" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Docname" +msgstr "" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/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 "" + +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Reference Document" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Reference Document Name" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (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 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 "" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" +msgstr "" + +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Reference Report" +msgstr "" + +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json +msgid "Reference Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "" + +#: frappe/printing/page/print/print.js: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 "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "" + +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Refresh Google Sheet" +msgstr "" + +#. 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 "" + +#: frappe/public/js/frappe/list/list_view.js:531 +msgctxt "Document count in list view" +msgid "Refreshing" +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 "" + +#: frappe/core/doctype/user/user.py:1023 +msgid "Registered but disabled" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json +msgid "Rejected" +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "" + +#. Group in Package's connections +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:444 +msgid "Reload" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:249 +msgid "Reload List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "" + +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Remember Last Selected Value" +msgstr "" + +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:476 +msgid "Remind Me" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 +msgid "Remove column" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/model/model.js:772 +#: frappe/public/js/frappe/views/treeview.js:311 +msgid "Rename" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:759 +msgid "Rename {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:698 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:544 +msgid "Repeat" +msgstr "" + +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Repeat Header and Footer" +msgstr "" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +msgstr "" + +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Day" +msgstr "" + +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Days" +msgstr "" + +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Last Day of the Month" +msgstr "" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146 +msgid "Repeats {0}" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +msgstr "" + +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Reply" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the report (Link) field in DocType 'Auto Email Report' +#: 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 "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "" + +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Filters" +msgstr "" + +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Report Hide" +msgstr "" + +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Report Information" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1902 +msgid "Report Name" +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 "" + +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Reference Doctype" +msgstr "" + +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Type" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "Report cannot be set for Single types" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: frappe/desk/doctype/number_card/number_card.js:191 +msgid "Report has no data, please modify the filters or change the Report Name" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:186 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1009 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Report limit reached" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "" + +#: frappe/desk/query_report.py:597 +msgid "Report updated successfully" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1351 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1940 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +msgid "Report {0}" +msgstr "" + +#: frappe/desk/reportview.py:364 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:53 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:341 +msgid "Report {0} saved" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "" + +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js: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 the data (Code) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Data" +msgstr "" + +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Description" +msgstr "" + +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Headers" +msgstr "" + +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "" + +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Request Limit" +msgstr "" + +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 +msgid "Request Timeout" +msgstr "" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "" + +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Requested Numbers" +msgstr "" + +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "" + +#. Description of the 'LDAP search path for Groups' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:230 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:230 +msgid "Reset OTP Secret" +msgstr "" + +#: 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 "" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "" + +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Link Expiry Duration" +msgstr "" + +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:417 +msgid "Reset to default" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: frappe/templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "" + +#. Label of the response_html (Code) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Response " +msgstr "" + +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json +msgid "Restrict To Domain" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Restrict to Domain" +msgstr "" + +#. Description of the 'Restrict IP' (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:196 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "" + +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Retry" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "" + +#: frappe/database/schema.py:161 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Revoked" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType '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 +msgid "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 +msgctxt "alignment" +msgid "Right" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Center" +msgstr "" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Robots.txt" +msgstr "" + +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' +#. Name of a DocType +#. Label of the role (Link) field in DocType 'User Type' +#. Label of a Link in the Users Workspace +#. Label of a shortcut in the Users Workspace +#. Label of the role (Link) field in DocType 'Onboarding Permission' +#. Label of the role (Link) field in DocType 'ToDo' +#. Label of the role (Link) field in DocType 'OAuth Client Role' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Role" +msgstr "" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "" + +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json +msgid "Role Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json +msgid "Role Permission for Page and Report" +msgstr "" + +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:103 +msgid "Role Permissions" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1788 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json +msgid "Role Profile" +msgstr "" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Role and Level" +msgstr "" + +#: frappe/core/doctype/user/user.py:363 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles_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 "" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles Assigned" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles HTML" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page +#. and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Roles Html" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: frappe/utils/nestedset.py:280 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "" + +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rounding Method" +msgstr "" + +#. Label of the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType '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 "" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" + +#: frappe/model/base_document.py:855 frappe/model/document.py:778 +msgid "Row" +msgstr "" + +#: 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 "" + +#: frappe/model/base_document.py:977 +msgid "Row #{0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:491 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "" + +#. Label of the row_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 the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html: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 "" + +#: frappe/custom/doctype/customize_form/customize_form.py:341 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#. Label of the rows_added_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:32 +msgid "Rows Added" +msgstr "" + +#. Label of the rows_removed_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:32 +msgid "Rows Removed" +msgstr "" + +#. 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 "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rule Conditions" +msgstr "" + +#: frappe/permissions.py:653 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "" + +#. Description of the 'Transitions' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules defining transition of state in the workflow." +msgstr "" + +#. Description of the 'Transition Rules' (Section Break) field in DocType +#. 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rules with higher priority number will be applied first." +msgstr "" + +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "" + +#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run scheduled jobs only if checked" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "" + +#. 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' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json +msgid "SMS" +msgstr "" + +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "SMS Gateway URL" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "SMS Settings" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:110 +msgid "SMS sent successfully" +msgstr "" + +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:212 +msgid "SMTP Server is required" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "" + +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "SQL Explain" +msgstr "" + +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "" + +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "SSL/TLS Mode" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Salesforce" +msgstr "" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:109 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Saturday" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js: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 "" + +#: frappe/core/doctype/user/user.js:339 +msgid "Save API Secret: {0}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1382 +#: frappe/public/js/frappe/views/reports/report_view.js:1727 +msgid "Save As" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1897 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +msgid "Save filters" +msgstr "" + +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Save on Completion" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +msgstr "" + +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:40 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "" + +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "" + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: 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 "" + +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Scheduled Job Type" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "" + +#. 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 "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "" + +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:106 +msgid "Scheduler Inactive" +msgstr "" + +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "" + +#: frappe/utils/scheduler.py:249 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:106 +msgid "Scheduler is inactive. Cannot import data." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "" + +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Scopes" +msgstr "" + +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Script" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + +#. Label of a Card Break in the Build Workspace +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Scripting" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "" + +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 +msgid "Search" +msgstr "" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "" + +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Search Fields" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Search Priorities" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1467 +msgid "Search field {0} is not valid" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "" + +#: frappe/templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 +msgid "Search..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json +msgid "Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Section ID" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:858 +msgid "See all past reports." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:153 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Seen" +msgstr "" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:602 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js: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 "" + +#: frappe/custom/doctype/client_script/client_script.js:25 +#: frappe/custom/doctype/client_script/client_script.js:28 +msgid "Select Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:377 +msgid "Select Column" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "Select Columns" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "" + +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:835 +msgid "Select Field" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:473 +#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: frappe/desk/doctype/event/event.py:103 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +msgstr "" + +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select List View" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "" + +#: frappe/printing/page/print/print.js:175 +#: frappe/printing/page/print/print.js:585 +msgid "Select Network Printer" +msgstr "" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:157 +msgid "Select Print Format" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +msgstr "" + +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Select Transaction" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +msgstr "" + +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group node first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1942 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1926 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:321 +msgid "Select an Image" +msgstr "" + +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1304 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1256 +#: frappe/public/js/frappe/list/list_view.js:1272 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "" + +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 +msgid "Select {0}" +msgstr "" + +#: frappe/model/workflow.py:117 +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 +msgid "Send" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "" + +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "" + +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send Alert On" +msgstr "" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +msgstr "" + +#. Label of the 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "" + +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "" + +#. Label of the send_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 +msgid "Send Notification to" +msgstr "" + +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Documents Followed By Me" +msgstr "" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "" + +#. 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 "" + +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Print as PDF" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:147 +msgid "Send Read Receipt" +msgstr "" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +msgstr "" + +#: 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" +msgstr "" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "" + +#. Description of the 'Value Changed' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +msgstr "" + +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Send an email reminder in the morning" +msgstr "" + +#. Description of the 'Days Before or After' (Int) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send days before or after the reference date" +msgstr "" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "" + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:141 +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" +msgstr "" + +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send unsubscribe message in email" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the 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 "" + +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Email Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1945 +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 "" + +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Name Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: 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' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/email/doctype/newsletter/newsletter.js:196 +#: frappe/email/doctype/newsletter/newsletter_list.js:5 +msgid "Sent" +msgstr "" + +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent On" +msgstr "" + +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "" + +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent To" +msgstr "" + +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "" + +#: frappe/app.py:383 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "" + +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Server IP" +msgstr "" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json +msgid "Server Script" +msgstr "" + +#: frappe/utils/safe_exec.py:94 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +msgstr "" + +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "" + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Service" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +msgid "Session Defaults" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +msgid "Session Defaults Saved" +msgstr "" + +#: frappe/app.py:360 +msgid "Session Expired" +msgstr "" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:119 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:295 +#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +msgstr "" + +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Set Banner from Image" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:201 +msgid "Set Chart" +msgstr "" + +#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:367 +msgid "Set Dynamic Filters" +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 "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 +msgid "Set Filters for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js: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' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Set Property After Alert" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "" + +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Set Role For" +msgstr "" + +#: frappe/core/doctype/user/user.js:131 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:49 +msgid "Set as Default" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Set by user" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set only once" +msgstr "" + +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" +"
\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
" +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n" +"
\n"
+"{\n"
+"\t\"value\": value,\n"
+"\t\"fieldtype\": \"Currency\",\n"
+"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
+"}
" +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "" + +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' +#. Group in User's connections +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' +#. Label of a Card Break in the Website Workspace +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js: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.
Consider saving the document before printing." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: frappe/model/document.py:474 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "" + +#: frappe/core/doctype/file/file.py: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 "" + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2257 +msgid "This form is not editable due to a Workflow." +msgstr "" + +#. Description of the 'Is Default' (Check) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +msgid "This format is used if country specific format is not found" +msgstr "" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2132 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#. 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 "" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "" + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "This is the number of the last created transaction with this prefix" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "" + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: frappe/printing/page/print/print.js:410 +msgid "This may get printed on multiple pages" +msgstr "" + +#: frappe/utils/goal.py:109 +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: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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:856 +msgid "This report was generated {0}." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 +msgid "This request has not yet been approved by the user." +msgstr "" + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:73 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "" + +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view. " +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown in a modal after routing" +msgstr "" + +#. Description of the 'Report Description' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgstr "" + +#: frappe/core/doctype/user/user.py:1240 +msgid "Throttled" +msgstr "" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Thursday" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/newsletter/newsletter.js:118 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Time" +msgstr "" + +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time Format" +msgstr "" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "" + +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series Based On" +msgstr "" + +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Time Taken" +msgstr "" + +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of 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 "" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "" + +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Time in Queries" +msgstr "" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "" + +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Timeline Links" +msgstr "" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1538 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1534 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Timeseries" +msgstr "" + +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#. 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 "" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" + +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType '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 "" + +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Title Field" +msgstr "" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1475 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#. Label of the recipients (Code) field in DocType 'Communication' +#. 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 "" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "" + +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "" + +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To Date Field" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
New {{ doc.doctype }} #{{ doc.name }}
" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
{{ doc.name }} Delivered
" +msgstr "" + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +msgstr "" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 +msgid "To export this step as JSON, link it in a Onboarding document and save the document." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js: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' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:291 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#: 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" +"
\n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1781 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#. Label of the transaction_hash (Small Text) field in DocType 'Transaction +#. Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Transaction Hash" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Transaction Log" +msgstr "" + +#. Name of a report +#: frappe/core/report/transaction_log_report/transaction_log_report.json +msgid "Transaction Log Report" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transition Rules" +msgstr "" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "" + +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Translatable" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2188 +msgid "Translate Data" +msgstr "" + +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Translate Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Translate values" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Trash" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Tree" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" + +#. Description of the 'Is Tree' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Tree structures are implemented using Nested Set" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "" + +#. Description of the 'Trigger Method' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 +msgid "Try Again" +msgstr "" + +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Try a Naming Series" +msgstr "" + +#: frappe/printing/page/print/print.js:189 +#: frappe/printing/page/print/print.js:195 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Tuesday" +msgstr "" + +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication" +msgstr "" + +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication method" +msgstr "" + +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js: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 "" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "UI Tour" +msgstr "" + +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" +msgstr "" + +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDNEXT" +msgstr "" + +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDVALIDITY" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:458 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL" +msgstr "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "" + +#: frappe/core/doctype/file/file.py:219 +msgid "URL must start with http:// or https://" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#. Name of a DocType +#. 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 "" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:268 +msgid "Unable to load: {0}" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: frappe/core/doctype/communication/email.py:179 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "" + +#: frappe/core/doctype/file/file.py:464 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "" + +#: frappe/app.py:383 +msgid "Uncaught Exception" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:515 +msgid "Undo" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:523 +msgid "Undo last action" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:876 +msgid "Unfollow" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "" + +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" +msgstr "" + +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Unique" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "" + +#: frappe/utils/data.py:1246 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: frappe/auth.py:316 +msgid "Unknown User" +msgstr "" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js: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' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Unread" +msgstr "" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "" + +#: frappe/utils/safe_exec.py: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' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "" + +#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +msgid "Unsubscribe" +msgstr "" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" + +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:122 +msgid "Unsubscribed" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: frappe/desk/doctype/event/event.py:269 +msgid "Upcoming Events for Today" +msgstr "" + +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:411 +msgid "Update" +msgstr "" + +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Amendment Naming" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +msgstr "" + +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Field" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Counter" +msgstr "" + +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Number" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "" + +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Value" +msgstr "" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:427 +msgid "Updated" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: 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 "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:49 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js: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 "" + +#: 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 "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +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 +#, python-format +msgid "Use % for any non empty value." +msgstr "" + +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use ASCII encoding for password" +msgstr "" + +#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Use First Day of Period" +msgstr "" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Use HTML" +msgstr "" + +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use IMAP" +msgstr "" + +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "" + +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "" + +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Use Report Chart" +msgstr "" + +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use SSL" +msgstr "" + +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use STARTTLS" +msgstr "" + +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" +msgstr "" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "" + +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use different Email ID" +msgstr "" + +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "" + +#: frappe/model/db_query.py:434 +msgid "Use of function {0} in field is restricted" +msgstr "" + +#: frappe/model/db_query.py:411 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: 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' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Use this fieldname to generate title" +msgstr "" + +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "" + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Used OAuth" +msgstr "" + +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType '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 +#. 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 +#. 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 "" + +#. Label of the user (Link) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "User " +msgstr "" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "" + +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "User Agent" +msgstr "" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "" + +#: frappe/public/js/frappe/desk.js:546 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "" + +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Details" +msgstr "" + +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "" + +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group Members" +msgstr "" + +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User ID" +msgstr "" + +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "User ID Property" +msgstr "" + +#. 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 "" + +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "User Id Field" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "User Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1881 +#: frappe/public/js/frappe/views/reports/report_view.js:1746 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1777 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. 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 +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "" + +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +msgstr "" + +#. Description of the 'Allow Login using User Name' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or User Name" +msgstr "" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "" + +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "User must always select" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: frappe/www/login.py:167 +msgid "User with email address {0} does not exist" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "" + +#: frappe/core/doctype/user/user.py:536 +msgid "User {0} cannot be deleted" +msgstr "" + +#: frappe/core/doctype/user/user.py:326 +msgid "User {0} cannot be disabled" +msgstr "" + +#: frappe/core/doctype/user/user.py:602 +msgid "User {0} cannot be renamed" +msgstr "" + +#: frappe/permissions.py:138 +msgid "User {0} does not have access to this document" +msgstr "" + +#: frappe/permissions.py:161 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 +msgid "User {0} has requested for data deletion" +msgstr "" + +#: frappe/core/doctype/user/user.py:1369 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: 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 the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "" + +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 +msgid "Username" +msgstr "" + +#: frappe/core/doctype/user/user.py:687 +msgid "Username {0} already exists" +msgstr "" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Users" +msgstr "" + +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "" + +#: frappe/public/js/frappe/desk.js:154 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "" + +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Utilization %" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "" + +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "" + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Validate Field" +msgstr "" + +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:360 +msgid "Validation Error" +msgstr "" + +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Validity" +msgstr "" + +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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 "" + +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Value Based On" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "" + +#: frappe/model/base_document.py:1049 frappe/model/document.py:834 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: frappe/model/document.py:780 +msgid "Value cannot be negative for" +msgstr "" + +#: frappe/model/document.py:784 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:611 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:445 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:714 +msgid "Value must be one of {0}" +msgstr "" + +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "" + +#: frappe/model/base_document.py:1119 +msgid "Value too big" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:8 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: frappe/twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:577 +msgid "View Audit Trail" +msgstr "" + +#: frappe/templates/includes/likes/likes.py:34 +msgid "View Blog Post" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:56 +msgid "View Comment" +msgstr "" + +#: 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 "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "" + +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "View Settings" +msgstr "" + +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "View Switcher" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js: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 "" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +msgstr "" + +#. Group in DocType's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json +msgid "Views" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "" + +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Visitor ID" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py: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 "" + +#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:34 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "" + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:87 +msgid "Weak" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "" + +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Web Form Fields" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1709 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. Label of the web_template (Link) field in DocType 'Web Page Block' +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "" + +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Template Values" +msgstr "" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +msgstr "" + +#. Name of a DocType +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Webhook" +msgstr "" + +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' +#. Name of a DocType +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "" + +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Webhook URL" +msgstr "" + +#. Group in Module Def's connections +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/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 "" + +#. 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 "" + +#. Name of a role +#: 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 "" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json +msgid "Website Route Meta" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json +msgid "Website Script" +msgstr "" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1522 +msgid "Website Search Field must be a valid fieldname" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json +msgid "Website Settings" +msgstr "" + +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json +msgid "Website Sidebar" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json +msgid "Website Slideshow" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json +msgid "Website Theme" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "" + +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme Image" +msgstr "" + +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme image link" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Wednesday" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Weekdays" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#. 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 +#: 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 "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Weekly Long" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "" + +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome Email Template" +msgstr "" + +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome URL" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "" + +#: frappe/core/doctype/user/user.py:414 +msgid "Welcome email sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:475 +msgid "Welcome to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" + +#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" + +#. Description of the 'DocType View' (Select) field in DocType 'Workspace +#. Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:468 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "" + +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 +msgid "Width" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "" + +#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report +#. Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Will add \"%\" before and after the query" +msgstr "" + +#. 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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:15 +msgid "With Letter head" +msgstr "" + +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Information" +msgstr "" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 +msgid "Workflow Action" +msgstr "" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "" + +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Name" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "" + +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Builder ID" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "" + +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Data" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:42 +msgid "Workflow Details" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +msgstr "" + +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "" + +#: frappe/model/workflow.py:61 +msgid "Workflow State not set" +msgstr "" + +#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:328 +msgid "Workflow Status" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" +msgstr "" + +#. Label of the workspace_section (Section Break) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#: frappe/public/js/frappe/router.js:177 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Manager" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Name of a DocType +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:753 +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 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "" + +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Write" +msgstr "" + +#: frappe/model/base_document.py:949 +msgid "Wrong Fetch From value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:484 +msgid "X Axis Field" +msgstr "" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:491 +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 +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "" + +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json +msgid "Year" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Yellow" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py: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 "" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "" + +#: frappe/public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "" + +#: frappe/permissions.py:409 +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 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "" + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/permissions.py:604 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:448 +msgid "You are not allowed to print this report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:781 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:569 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "" + +#: frappe/__init__.py:669 +msgid "You are not permitted to access this resource. Login to access" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.py:82 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:284 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: frappe/templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this " +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:17 +msgid "You can change Submitted documents by cancelling them and then, amending them." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:21 +msgid "You can change the retention policy from {0}." +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: frappe/model/delete_doc.py: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 "" + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:104 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "" + +#: frappe/handler.py:182 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:199 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: frappe/desk/query_report.py:343 +msgid "You can try changing the filters of your report." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:389 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:393 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:385 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:140 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 +msgid "You created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js: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 "" + +#: frappe/public/js/frappe/request.js:177 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "" + +#: frappe/app.py: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 "" + +#: frappe/desk/query_report.py:42 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:772 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:286 frappe/utils/response.py:290 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py:48 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from: " +msgstr "" + +#: frappe/handler.py:118 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:244 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:412 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: frappe/templates/includes/likes/likes.py:31 +msgid "You have received a ❤️ like on your blog post" +msgstr "" + +#: frappe/twofactor.py:432 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:125 +msgid "You have unseen {0}" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:498 +msgid "You haven't created a {0} yet" +msgstr "" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103 +msgid "You last edited this" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:339 +msgid "You must add atleast one link." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:768 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:609 +msgid "You must login to submit this form" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/utils/response.py:275 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "" + +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first: " +msgstr "" + +#: frappe/www/login.html:76 +msgid "You need to enable JavaScript for your app to work." +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:160 +msgid "You need to set one IMAP folder for {0}" +msgstr "" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" + +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "" + +#: frappe/client.py:449 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +msgstr "" + +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "" + +#: frappe/public/js/frappe/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 "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 +msgid "Your account has been deleted" +msgstr "" + +#: frappe/auth.py:514 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: frappe/core/doctype/file/file.js: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 "" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:428 +msgid "Your form has been successfully updated" +msgstr "" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: frappe/www/update-password.html:167 +msgid "Your new password has been set successfully." +msgstr "" + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "" + +#: frappe/app.py:361 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: frappe/templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "" + +#: frappe/utils/data.py:1547 +msgid "Zero" +msgstr "" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Zero means send records updated at anytime" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js: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 "" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "" + +#: frappe/database/database.py: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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 +msgid "added rows for {0}" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +msgid "and" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +msgid "calendar" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:208 +#: frappe/public/js/frappe/utils/utils.js:1116 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd-mm-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "default" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "" + +#. Description of the 'Default Incoming' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "" + +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. smtp.gmail.com" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "email inbox" +msgstr "" + +#: frappe/permissions.py:403 frappe/permissions.py:414 +#: frappe/public/js/frappe/form/controls/link.js:503 +msgid "empty" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "facebook" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "failed" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "" + +#: frappe/utils/backups.py:399 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:209 +#: frappe/public/js/frappe/utils/utils.js:1120 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +msgid "hub" +msgstr "" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "" + +#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "in minutes" +msgstr "" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +msgid "label" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "linkedin" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:362 +msgid "login_required" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "long" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:210 +#: frappe/public/js/frappe/utils/utils.js:1124 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +msgstr "" + +#: 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 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm-dd-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm/dd/yyyy" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +msgid "new" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "" + +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "no failed attempts" +msgstr "" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "plain" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "" + +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "processlist" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 +msgid "removed rows for {0}" +msgstr "" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:211 +#: frappe/public/js/frappe/utils/utils.js:1128 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "short" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +msgstr "" + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. group" +msgstr "" + +#. Description of the 'LDAP Group Member attribute' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. member" +msgstr "" + +#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "twitter" +msgstr "" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py: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 "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:361 +msgid "via Notification" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "when clicked on element it will focus popover if present." +msgstr "" + +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "" + +#: frappe/printing/page/print/print.js:622 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "yyyy-mm-dd" +msgstr "" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +msgid "{0} ${type}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:564 +msgid "{0} Chart" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 +msgid "{0} List" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "" + +#: frappe/model/base_document.py:1149 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 +msgid "{0} Report" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js: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 "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 +msgid "{0} Tree" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 +msgid "{0} Web page views" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:204 +msgid "{0} already exists. Select another name" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1740 +msgid "{0} and {1}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:89 +msgid "{0} are required" +msgstr "" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py: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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: frappe/model/document.py: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 "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:382 +msgid "{0} comments" +msgstr "" + +#: 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 "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:141 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 +msgid "{0} created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:96 +#: frappe/website/doctype/website_settings/website_settings.py:116 +msgid "{0} does not exist in row {1}" +msgstr "" + +#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1068 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: frappe/email/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 "" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:148 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "{0} is a mandatory field" +msgstr "" + +#: frappe/core/doctype/file/file.py:544 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1618 +msgid "{0} is an invalid Data field." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1462 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1431 +msgid "{0} is equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1451 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1441 +msgid "{0} is greater than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1456 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1446 +msgid "{0} is less than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1481 +msgid "{0} is like {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py: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 "" + +#: frappe/email/doctype/email_group/email_group.py:131 +#: frappe/utils/__init__.py:202 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:170 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:149 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: frappe/model/workflow.py:189 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: frappe/permissions.py:787 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: frappe/permissions.py:807 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/file/file.py:524 +msgid "{0} is not a zip file" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1436 +msgid "{0} is not equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1483 +msgid "{0} is not like {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1477 +msgid "{0} is not one of {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1487 +msgid "{0} is not set" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:165 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is one of {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:218 +#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/utils/csvutils.py:156 +msgid "{0} is required" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1486 +msgid "{0} is set" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1465 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1694 +msgid "{0} items selected" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: frappe/desk/notifications.py: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 "" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1068 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1070 +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 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: frappe/utils/data.py:1730 +msgid "{0} or {1}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1785 +msgid "{0} row #{1}: " +msgstr "" + +#: frappe/desk/query_report.py:612 +msgid "{0} saved successfully" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:316 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +msgid "{0} should not be same as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:62 +#: frappe/email/doctype/email_group/email_group.py:133 +msgid "{0} subscribers added" +msgstr "" + +#: frappe/email/queue.py:68 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:234 +msgid "{0} to {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:253 +msgid "{0} updated" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:982 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: frappe/utils/nestedset.py:340 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: frappe/model/document.py:260 frappe/permissions.py:558 +msgid "{0} {1} not found" +msgstr "" + +#: frappe/model/delete_doc.py:247 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1110 +msgid "{0}, Row {1}" +msgstr "" + +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "" + +#: frappe/model/base_document.py:1115 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1800 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1818 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1795 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1802 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1822 +msgid "{0}: Cannot set import as {1} is not importable" +msgstr "" + +#: 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 "" + +#: frappe/core/doctype/doctype/doctype.py:1426 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1334 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1293 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1281 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1413 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1755 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1315 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1304 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1322 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1784 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:51 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1268 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1279 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1434 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1488 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2488 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2497 +msgid "{} Possibly invalid python code.
{}" +msgstr "" + +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "" + +#: frappe/utils/data.py:135 +msgid "{} is not a valid date string." +msgstr "" + +#: frappe/commands/utils.py:562 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: frappe/utils/backups.py:466 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "" + diff --git a/frappe/locale/de.po b/frappe/locale/de.po index 0e8af2c5fe..936743d64a 100644 --- a/frappe/locale/de.po +++ b/frappe/locale/de.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-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: German\n" "MIME-Version: 1.0\n" @@ -885,7 +885,7 @@ msgstr "API-Schlüssel kann nicht neu generiert werden" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "API Logging" -msgstr "" +msgstr "API-Protokollierung" #. Label of the api_method (Data) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -895,7 +895,7 @@ msgstr "API-Methode" #. Name of a DocType #: frappe/core/doctype/api_request_log/api_request_log.json msgid "API Request Log" -msgstr "" +msgstr "API-Anfrage-Protokoll" #. Label of the api_secret (Password) field in DocType 'User' #. Label of the api_secret (Password) field in DocType 'Email Account' @@ -4349,7 +4349,7 @@ msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden." #: frappe/public/js/frappe/form/grid.js:1128 msgid "Cannot import table with more than 5000 rows." -msgstr "" +msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden." #: frappe/model/document.py:1100 msgid "Cannot link cancelled document: {0}" @@ -4647,7 +4647,7 @@ msgstr "Aktivieren, falls der Benutzer gezwungen sein soll, vor dem Speichern ei #. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." -msgstr "" +msgstr "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..." @@ -5192,7 +5192,7 @@ msgstr "Kommentarlimit pro Stunde" #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." -msgstr "" +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/public/js/frappe/model/meta.js:209 @@ -6436,7 +6436,7 @@ msgstr "Täglich lang" #. 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 "Tägliche Wartung" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json @@ -8246,7 +8246,7 @@ msgstr "Laden Sie Ihre Daten herunter" #: frappe/core/doctype/prepared_report/prepared_report.js:49 msgid "Download as CSV" -msgstr "" +msgstr "Als CSV downloaden" #: frappe/contacts/doctype/contact/contact.js:98 msgid "Download vCard" @@ -8354,7 +8354,7 @@ msgstr "Doppelter Name" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate Row" -msgstr "" +msgstr "Zeile duplizieren" #: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" @@ -8727,7 +8727,7 @@ msgstr "E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Ko #: frappe/email/doctype/email_account/email_account.py:578 msgid "Email Account {0} Disabled" -msgstr "" +msgstr "E-Mail-Konto {0} Deaktiviert" #. Label of the email_id (Data) field in DocType 'Address' #. Label of the email_id (Data) field in DocType 'Contact' @@ -8789,7 +8789,7 @@ msgstr "E-Mail-Gruppen-Mitglied" #. Label of the email_header (Data) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Email Header" -msgstr "" +msgstr "E-Mail-Kopfzeile" #. Label of the email_id (Data) field in DocType 'Contact Email' #. Label of the email_id (Data) field in DocType 'User Email' @@ -8939,7 +8939,7 @@ msgstr "E-Mail nicht mit {0} bestätigt" #: frappe/email/doctype/email_queue/email_queue.js:19 msgid "Email queue is currently suspended. Resume to automatically send other emails." -msgstr "" +msgstr "Die E-Mail-Warteschlange ist derzeit unterbrochen. Fortsetzen, um automatisch andere E-Mails zu versenden." #. Label of the section_break_udjs (Section Break) field in DocType 'System #. Health Report' @@ -9609,7 +9609,7 @@ msgstr "Führen Sie das Konsolenskript aus" #: frappe/public/js/frappe/ui/dropdown_console.js:125 msgid "Executing Code" -msgstr "" +msgstr "Code wird ausgeführt" #: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." @@ -11817,7 +11817,7 @@ msgstr "hat Rolle" #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Has Setup Wizard" -msgstr "" +msgstr "Hat einen Setup-Assistenten" #. Label of the has_web_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -12231,7 +12231,7 @@ msgstr "Stündlich lang" #. 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 "Stündliche Wartung" #. Description of the 'Password Reset Link Generation Limit' (Int) field in #. DocType 'System Settings' @@ -14272,11 +14272,11 @@ msgstr "Letzte 10 aktive Benutzer" #: frappe/public/js/frappe/ui/filters/filter.js:628 msgid "Last 14 Days" -msgstr "" +msgstr "Letze 14 Tage" #: frappe/public/js/frappe/ui/filters/filter.js:632 msgid "Last 30 Days" -msgstr "" +msgstr "Letzte 30 Tage" #: frappe/public/js/frappe/ui/filters/filter.js:652 msgid "Last 6 Months" @@ -14284,11 +14284,11 @@ msgstr "Letzte 6 Monate" #: frappe/public/js/frappe/ui/filters/filter.js:624 msgid "Last 7 Days" -msgstr "" +msgstr "Letze 7 Tage" #: frappe/public/js/frappe/ui/filters/filter.js:636 msgid "Last 90 Days" -msgstr "" +msgstr "Letzte 90 Tage" #. Label of the last_active (Datetime) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -14995,7 +14995,7 @@ msgstr "Protokoll" #. Label of the log_api_requests (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Log API Requests" -msgstr "" +msgstr "API-Anfragen protokollieren" #. Label of the log_data_section (Section Break) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -15522,7 +15522,7 @@ msgstr "Maximale Länge" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max Report Rows" -msgstr "" +msgstr "Max. Berichtszeilen" #. Label of the max_value (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -16730,11 +16730,11 @@ msgstr "Weiter" #: frappe/public/js/frappe/ui/filters/filter.js:684 msgid "Next 14 Days" -msgstr "" +msgstr "Nächste 14 Tage" #: frappe/public/js/frappe/ui/filters/filter.js:688 msgid "Next 30 Days" -msgstr "" +msgstr "Nächste 30 Tage" #: frappe/public/js/frappe/ui/filters/filter.js:704 msgid "Next 6 Months" @@ -16742,7 +16742,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:680 msgid "Next 7 Days" -msgstr "" +msgstr "Nächste 7 Tage" #. Label of the next_action_email_template (Link) field in DocType 'Workflow #. Document State' @@ -18106,7 +18106,7 @@ msgstr "Modul oder Werkzeug öffnen" #: frappe/public/js/frappe/ui/keyboard.js:366 msgid "Open console" -msgstr "" +msgstr "Konsole öffnen" #: frappe/public/js/print_format_builder/Preview.vue:17 msgid "Open in a new tab" @@ -23251,7 +23251,7 @@ 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" -msgstr "" +msgstr "E-Mail senden bei Status" #. Description of the 'Send Print as PDF' (Check) field in DocType 'Print #. Settings' @@ -26629,7 +26629,7 @@ msgstr "Dieser Wert ergibt sich aus dem Feld {1} von {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 "Dieser Wert gibt die maximale Anzahl von Zeilen an, die in der Berichtsansicht dargestellt werden können. " #: 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" @@ -26852,7 +26852,7 @@ msgstr "Zeitstempel" #: frappe/desk/doctype/system_console/system_console.js:41 msgid "Tip: Try the new dropdown console using" -msgstr "" +msgstr "Tipp: Probieren Sie die neue Dropdown-Konsole mit" #. Label of the title (Data) field in DocType 'DocType State' #. Label of the method (Data) field in DocType 'Error Log' @@ -27018,7 +27018,7 @@ msgstr "Um diesen Schritt als JSON zu exportieren, verknüpfen Sie ihn in einem #: frappe/email/doctype/email_account/email_account.js:126 msgid "To generate password click {0}" -msgstr "" +msgstr "Um ein Passwort zu generieren, klicken Sie auf {0}" #: frappe/public/js/frappe/views/reports/query_report.js:857 msgid "To get the updated report, click on {0}." @@ -27026,7 +27026,7 @@ msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen." #: frappe/email/doctype/email_account/email_account.js:139 msgid "To know more click {0}" -msgstr "" +msgstr "Für weitere Informationen klicken Sie auf {0}" #. Description of the 'Console' (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -28925,7 +28925,7 @@ msgstr "Sichtbarkeit" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 msgid "Visible to website/portal users." -msgstr "" +msgstr "Für Website-/Portalbenutzer sichtbar." #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -29672,11 +29672,11 @@ msgstr "Arbeitsbereiche" #: 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 "" +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 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." -msgstr "" +msgstr "Möchten Sie die Veröffentlichung dieses Kommentars aufheben? Dann ist er für die Benutzer der Website/des Portals nicht mehr sichtbar." #: frappe/desk/page/setup_wizard/setup_wizard.py:41 msgid "Wrapping up" @@ -29880,7 +29880,7 @@ msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen." #: frappe/__init__.py:669 msgid "You are not permitted to access this resource. Login to access" -msgstr "" +msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um darauf zuzugreifen" #: 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." @@ -30040,7 +30040,7 @@ msgstr "Von Ihnen erstellt" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 msgctxt "Form timeline" msgid "You created this document {0}" -msgstr "" +msgstr "Sie haben dieses Dokument {0} erstellt" #: frappe/client.py:417 msgid "You do not have Read or Select Permissions for {}" @@ -30256,7 +30256,7 @@ msgstr "Sie haben sich als ein anderer Benutzer über eine andere Registerkarte #: 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 "Ihre CSV-Datei wird generiert und erscheint im Bereich „Anhänge“, sobald sie fertig ist. Sie werden außerdem benachrichtigt, sobald die Datei zum Download bereitsteht." #: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" @@ -31010,7 +31010,7 @@ msgstr "über Zuweisungsregel" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "via Auto Repeat" -msgstr "" +msgstr "über automatische Wiederholung" #: frappe/core/doctype/data_import/importer.py:271 #: frappe/core/doctype/data_import/importer.py:292 @@ -31302,7 +31302,7 @@ msgstr "Von {0} erstellt" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 msgctxt "Form timeline" msgid "{0} created this document {1}" -msgstr "" +msgstr "{0} hat dieses Dokument {1} erstellt" #: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" diff --git a/frappe/locale/es.po b/frappe/locale/es.po index c8573ccff5..fe8d715b07 100644 --- a/frappe/locale/es.po +++ b/frappe/locale/es.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:04\n" +"PO-Revision-Date: 2025-06-16 15:29\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -26351,19 +26351,19 @@ msgstr "Este tablero Kanban será privado" #: frappe/public/js/frappe/ui/filters/filter.js:666 msgid "This Month" -msgstr "" +msgstr "Este mes" #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" -msgstr "" +msgstr "Este cuarto" #: frappe/public/js/frappe/ui/filters/filter.js:662 msgid "This Week" -msgstr "" +msgstr "Esta Semana" #: frappe/public/js/frappe/ui/filters/filter.js:674 msgid "This Year" -msgstr "" +msgstr "Este año" #: frappe/custom/doctype/customize_form/customize_form.js:220 msgid "This action is irreversible. Do you wish to continue?" @@ -29752,7 +29752,7 @@ msgstr "Si" #: frappe/public/js/frappe/ui/filters/filter.js:727 msgid "Yesterday" -msgstr "" +msgstr "Ayer" #: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index 3f686d458b..7ba41fcef0 100644 --- a/frappe/locale/fa.po +++ b/frappe/locale/fa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-06-08 09:34+0000\n" -"PO-Revision-Date: 2025-06-11 14:05\n" +"PO-Revision-Date: 2025-06-16 15:30\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -2912,7 +2912,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 @@ -7166,7 +7166,7 @@ msgstr "غیر فعال کردن Refresh خودکار" #. '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' diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po index 9eb59884c8..88bae3bafd 100644 --- a/frappe/locale/fr.po +++ b/frappe/locale/fr.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:04\n" +"PO-Revision-Date: 2025-06-16 15:29\n" "Last-Translator: developers@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -3865,7 +3865,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:76 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "CC" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 36a1762610..1c3c741251 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-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: Hungarian\n" "MIME-Version: 1.0\n" @@ -1137,7 +1137,7 @@ msgstr "" #. Label of the add_translate_data (Check) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Add Translate Data" -msgstr "" +msgstr "Fordítási adatok hozzáadása" #. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json @@ -1988,7 +1988,7 @@ msgstr "" #: frappe/model/document.py:550 msgid "Amendment Not Allowed" -msgstr "" +msgstr "Módosítás nem engedélyezett" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." @@ -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 "Az automatikus ismétlés sikertelen. Kérjük, engedélyezze az automatikus ismétlést a problémák megoldása után." #. 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 "Automatikusan alkalmazott szűrő a friss adatokra. Ezt a viselkedést a listanézet beállításai között kikapcsolhatja." #. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -3761,7 +3761,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:76 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "CC" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.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 "Ügyfélszkript" #: 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 "A kommunikációs kulcs nincs beállítva" #. 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 "Feltétel leírás" #. 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 "Hozzáférés megerősítése" #: 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 @@ -5556,7 +5556,7 @@ msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " -msgstr "" +msgstr "Nem sikerült elindulni: " #: frappe/public/js/frappe/web_form/web_form.js:359 msgid "Couldn't save, please check the data you have entered" @@ -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 "Automatikus újbóli szűrők kikapcsolása" #. Label of the disable_change_log_notification (Check) field in DocType #. 'System Settings' @@ -9045,7 +9045,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 msgid "End" -msgstr "" +msgstr "Vége" #. Label of the end_date (Date) field in DocType 'Auto Repeat' #. Label of the end_date (Date) field in DocType 'Audit Trail' @@ -9743,7 +9743,7 @@ msgstr "" #: frappe/integrations/frappe_providers/frappecloud_billing.py:59 msgid "Failed to get site info" -msgstr "" +msgstr "Nem sikerült lekérni a webhely adatait" #: 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 "Nem sikerült bejelentkezést kérni a Frappe Cloud-ba" #: 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 "Sikertelen API hívása közben {0}" #. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health #. Report' diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po index acf86bb74c..a9c427a369 100644 --- a/frappe/locale/nl.po +++ b/frappe/locale/nl.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: Dutch\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=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: nl\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: nl_NL\n" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid " to your browser" -msgstr "naar uw 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 "\"Bedrijfsgeschiedenis\"" +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 "\"Bovenliggend\" betekent de bovenliggende tabel waarin deze rij moet worden toegevoegd" +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 "\"Teamleden\" of \"Management\"" +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 ""modified_from" veld moet aanwezig zijn om een wijziging uit te voeren." +msgstr "" -#: utils/csvutils.py:219 +#: frappe/utils/csvutils.py:246 msgid "\"{0}\" is not a valid Google Sheets URL" -msgstr ""{0}" is geen geldige Google Spreadsheets-URL" - -#. 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 Global Search' niet toegestaan voor type {0} in rij {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 "'In lijst weergave' niet toegestaan voor type {0} in rij {1}" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:149 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 msgid "'Recipients' not specified" -msgstr "'Ontvangers' niet gespecificeerd" +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}' niet toegestaan voor type {1} in rij {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 "** Mislukt: {0} tot {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 - Ontwerp; 1 - Ingediend; 2 - Geannuleerd" +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 is hoogst" +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 Google Agenda-evenement gesynchroniseerd." +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 reactie" +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 uur geleden" +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 minuut geleden" +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 maand geleden" +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 record wordt geëxporteerd" +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 week geleden" +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 jaar geleden" +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 records" +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 "; niet toegelaten in conditie" +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" "
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" "
  3. All values are given class value
  4. \n" "
  5. All Section Breaks are given class section-break
  6. \n" "
  7. All Column Breaks are given class column-break
  8. \n" -"
\n" -"\n" -"

Examples

\n" -"\n" -"

1. Left align integers

\n" -"\n" -"
[data-fieldtype=\"Int\"] .value { text-align: left; }
\n" -"\n" -"

1. Add border to sections except the last section

\n" -"\n" +"\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 "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
" 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 "Voettekst wordt alleen correct in PDF weergegeven" +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 "Voor DocType Link / DocType-actie" +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 "Voor documentgebeurtenis" +#. 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 "Voor documenttype" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:529 +#: frappe/public/js/frappe/widgets/widget_dialog.js:553 msgid "For Example: {} Open" -msgstr "Bijvoorbeeld: {} Open" - -#. 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 "voor Gebruikers" +msgstr "" -#. Label of a Link field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "For User" -msgstr "voor Gebruikers" - -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "For User" -msgstr "voor Gebruikers" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "For User" -msgstr "voor Gebruikers" - -#. 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 "Voor waarde" +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 "Gebruik voor vergelijking> 5, <10 of = 324. Gebruik 5:10 voor bereiken (voor waarden tussen 5 en 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 "Bijvoorbeeld: Als u de document-id omvatten, gebruik {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 "Bijvoorbeeld: {} Openen" +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 "Zie Client Script API en voorbeelden voor hulp" +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 "Klik hier voor meer informatie." +msgstr "" -#: integrations/doctype/google_settings/google_settings.js:7 +#: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." -msgstr "Voor meer informatie, {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 "Voor het bijwerken, kunt u alleen selectieve kolommen te werken." +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 "Voor {0} op niveau {1} in {2} in rij {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 "Dwingen" +msgstr "" -#. Label of a Check field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" -msgid "Force" -msgstr "Dwingen" - -#. 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 "Force Show" +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 "Dwing gebruiker om wachtwoord opnieuw in te stellen" +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 "Wachtwoord vergeten?" - -#: 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 "Formulierinstellingen" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form Settings" -msgstr "Formulierinstellingen" - -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Form Settings" -msgstr "Formulierinstellingen" - -#. 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 "Formulier URL-gecodeerd" +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 "Formaat" +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 "Formaat" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Format" -msgstr "Formaat" - -#. 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 "Formaat Gegevens" +msgstr "" -#: core/doctype/communication/communication.js:70 +#: frappe/core/doctype/communication/communication.js:70 msgid "Forward" -msgstr "Vooruit" +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 "Doorsturen naar e-mailadres" +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 "Fractie" +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 "Fractie Units" - -#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134 -msgid "Frappe" -msgstr "Frappe" +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 "Frappe" +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: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 "Frequentie" +#: 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 "Frequentie" +#: 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 "Frequentie" - -#. Label of a Select field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Frequency" -msgstr "Frequentie" - -#. 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 "Frequentie" - -#. Label of a Select field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Frequency" -msgstr "Frequentie" +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 "Vrijdag" - -#. 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 "Vrijdag" - #. 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 "Vrijdag" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Friday" -msgstr "Vrijdag" - +#. 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 "Vrijdag" +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 "Van" +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 "Van" +msgstr "" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "From" -msgstr "Van" - -#: 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 "Van Datum" +msgstr "" -#. Label of a Date field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "From Date" -msgstr "Van 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 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 "Van datumveld" +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 "Van documenttype" +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 "Van volledige naam" +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 "Van gebruiker" +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 "vol" +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 "Volledige naam" +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 "Volledige naam" - -#. Label of a Data field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Full Name" -msgstr "Volledige naam" - -#. Label of a Data field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Full Name" -msgstr "Volledige naam" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Full Name" -msgstr "Volledige naam" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Full Name" -msgstr "Volledige naam" - -#: 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 "Volledige Pagina" +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 "Volle breedte" +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 "Functie" +msgstr "" -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Function" -msgstr "Functie" - -#: public/js/frappe/widgets/widget_dialog.js:673 +#: frappe/public/js/frappe/widgets/widget_dialog.js:693 msgid "Function Based On" -msgstr "Functie gebaseerd op" +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 "Verder nodes kunnen alleen worden gemaakt op grond van het type nodes 'Groep'" +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 "Geslacht" - -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Gender" -msgstr "Geslacht" - -#. Label of a Data field in DocType 'Gender' -#: contacts/doctype/gender/gender.json -msgctxt "Gender" -msgid "Gender" -msgstr "Geslacht" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Gender" -msgstr "Geslacht" - -#. 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 "Genereer sleutels" +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 "Genereer nieuw rapport" +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 "Geolocation" - -#. 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 "Geolocation" +#. 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 "Geolocation" +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 "Ontvang een alert voor vandaag" +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 "Contactpersonen ophalen" +msgstr "" -#: website/doctype/web_form/web_form.js:84 +#: frappe/website/doctype/web_form/web_form.js:93 msgid "Get Fields" -msgstr "Krijg velden" +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 "Get Items" +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 "Maak uw wereldwijd erkende avatar bij 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 "Geef beoordelingspunten" +#: 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 "Globaal zoeken 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 "Globaal zoeken Documenttypen Reset." +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 "Algemene zoekinstellingen" +msgstr "" -#: public/js/frappe/ui/keyboard.js:118 +#: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" -msgstr "Wereldwijde sneltoetsen" +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 "Global Afmelden" +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 "Gaan" +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 "Ga terug" +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 "Ga naar 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 "Ga naar het volgende record" +msgstr "" -#: public/js/frappe/form/form.js:154 +#: frappe/public/js/frappe/form/form.js:154 msgid "Go to previous record" -msgstr "Ga naar vorige record" +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 "Ga naar het document" +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 "Ga naar {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 "Ga naar {0} lijst" +msgstr "" -#: core/doctype/page/page.js:11 +#: frappe/core/doctype/page/page.js:11 msgid "Go to {0} Page" -msgstr "Ga naar {0} pagina" +msgstr "" -#: utils/goal.py:115 utils/goal.py:122 +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 msgid "Goal" -msgstr "Doel" +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 kalender" - -#. 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 kalender" - -#. 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 kalender" +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 Agenda - Kan geen agenda maken voor {0}, foutcode {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 Agenda - Kon gebeurtenis {0} niet verwijderen uit Google Agenda, foutcode {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 Agenda - Kan evenement niet ophalen uit Google Agenda, foutcode {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 Agenda - Kon contact niet invoegen in Google Contacten {0}, foutcode {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 Agenda - Kan gebeurtenis niet invoegen in Google Agenda {0}, foutcode {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 Agenda - Kon gebeurtenis {0} in Google Agenda, foutcode {1} niet bijwerken." +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 "Google Agenda-gebeurtenis-ID" +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 Agenda-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 Agenda-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 Agenda is geconfigureerd." +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 "Google Contacten" - -#. 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 "Google Contacten" - -#. 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 "Google Contacten" +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 "Google Contacten - Kon contacten van Google Contacten {0}, foutcode {1} niet synchroniseren." +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 "Google Contacten - Kon contact in Google Contacten {0}, foutcode {1} niet bijwerken." +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 "Google Contacten-ID" +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 - Kan geen map maken in Google Drive - Foutcode {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 - Kan map niet vinden in Google Drive - Foutcode {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 - Kan niet vinden - {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 "Google Drive Backup succesvol." +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 "Google-lettertype" +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-lettertype" - -#. 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 "Google-services" +msgstr "" #. Name of a DocType -#: integrations/doctype/google_settings/google_settings.json -msgid "Google Settings" -msgstr "Google instellingen" - #. 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 "Google instellingen" +msgstr "" -#: utils/csvutils.py:199 +#: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." -msgstr "De URL van Google Spreadsheets is ongeldig of niet openbaar toegankelijk." +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 "De URL van Google Spreadsheets moet eindigen op "gid = {number}". Kopieer en plak de URL uit de adresbalk van de browser en probeer het opnieuw." +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 "Voorbeeld van Google-fragment" +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 "Grant Type" +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 "Groep" - -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Group" -msgstr "Groep" - -#. 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 "Groep" - -#: website/report/website_analytics/website_analytics.js:32 -msgid "Group By" -msgstr "Groeperen op" +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 "Groeperen op" +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 "Groeperen op basis van" +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 "Groeperen op type" +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 "Groeperen op veld is vereist om een dashboarddiagram te maken" +msgstr "" -#: public/js/frappe/views/treeview.js:401 +#: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" -msgstr "Groeperingsnode" +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 "HTML-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 "HTML Editor" -msgstr "HTML-editor" +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 "HTML-editor" +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 "HTML-pagina" +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 voor header sectie . facultatief" +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 "Voor de helft" +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 "Halfjaarlijkse" - -#: public/js/frappe/utils/common.js:402 -msgid "Half-yearly" -msgstr "Halfjaarlijks" +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 "Halfjaarlijks" +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 "Heeft bijlage" +msgstr "" #. Name of a DocType -#: core/doctype/has_domain/has_domain.json +#: frappe/core/doctype/has_domain/has_domain.json msgid "Has Domain" -msgstr "Heeft domein" +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 "Heeft Rol" +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 "Heeft Webweergave" +msgstr "" -#: templates/signup.html:19 +#: frappe/templates/signup.html:19 msgid "Have an account? Login" -msgstr "Bestaande account? Aanmelden" +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 "hoofd" +msgstr "" -#. Label of a Check field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" -msgid "Header" -msgstr "hoofd" - -#. Label of a HTML Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Header" -msgstr "hoofd" - -#. Label of a HTML Editor field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" -msgid "Header" -msgstr "hoofd" - -#. 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 koptekst" +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-koptekst ingesteld vanuit bijlage {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 "Koptekst en paneermeel" +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 "headers" - -#. 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 "headers" - -#: printing/page/print_format_builder/print_format_builder.js:602 -msgid "Heading" -msgstr "titel" - -#. 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 "titel" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Heading" -msgstr "titel" - -#. 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 "titel" +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 "titel" - -#. 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 "titel" +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 "Heatmap" +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 "Help" - -#. Label of a HTML field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Help" -msgstr "Help" - -#. Label of a Section Break field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Help" -msgstr "Help" +msgstr "" #. Name of a DocType -#: website/doctype/help_article/help_article.json -msgid "Help Article" -msgstr "Help Artikel" - #. 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 "Help Artikel" +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 "Help Artikelen" +msgstr "" #. Name of a DocType -#: website/doctype/help_category/help_category.json -msgid "Help Category" -msgstr "Help Categorie" - #. 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 "Help Categorie" +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 "Help Dropdown" +msgstr "" -#. Label of a HTML field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Help HTML" -msgstr "Help 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 "Hulp bij zoeken" +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 "Hoi {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 "Verborgen" +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 "Verborgen" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Hidden" -msgstr "Verborgen" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hidden" -msgstr "Verborgen" - -#. Label of a Check field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Hidden" -msgstr "Verborgen" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Hidden" -msgstr "Verborgen" - -#. Label of a Check field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Hidden" -msgstr "Verborgen" - -#. 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 "Verborgen" - -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Hidden" -msgstr "Verborgen" - -#. 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 "Zich verstoppen" - #. 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 "Zich verstoppen" +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 "Verberg blok" +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 "Rand verbergen" +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 "Rand verbergen" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Border" -msgstr "Rand verbergen" - -#. 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 "Verberg 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 "Verberg Copy" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Hide Copy" -msgstr "Verberg Copy" - -#. 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 "Verberg aangepaste documenttypen en rapporten" +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 "Dagen verbergen" +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 "Dagen verbergen" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Days" -msgstr "Dagen verbergen" - -#: 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 "Login verbergen" +#: 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 "Verberg seconden" +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 "Verberg seconden" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Seconds" -msgstr "Verberg seconden" - -#. 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 Standard Menu" +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 "Weekends verbergen" - -#: 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 "Verbergen Details" +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 "Voettekst verbergen in automatische e-mailrapporten" +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 "Hoog" +#. 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 "Hoog" +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 "Regel met hogere prioriteit wordt eerst toegepast" +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 "Markeer" +msgstr "" -#: www/update-password.html:271 +#: frappe/www/update-password.html:276 msgid "Hint: Include symbols, numbers and capital letters in the password" -msgstr "Hint: Inclusief symbolen, cijfers en hoofdletters in het wachtwoord" +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 "Thuis" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Home" -msgstr "Thuis" - -#. 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 "Home instellingen" +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 "Home / Test Folder 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 "Folder home / Test 1 / Test Folder 3" +msgstr "" -#: core/doctype/file/test_file.py:310 +#: frappe/core/doctype/file/test_file.py:341 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 "ieder uur" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Hourly" -msgstr "ieder uur" - #. 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 "ieder uur" +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 "Elk uur 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 "Hourly Long" -msgstr "Elk uur lang" +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 "Uurtarieflimiet voor het genereren van links voor het opnieuw instellen van wachtwoorden" +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 "Hoe moet deze valuta worden geformatteerd? Indien niet ingesteld, dan zal gebruik gemaakt wroden van de systeem standaard" +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 (naam) van de entiteit waarvan de eigenschap moet worden ingesteld" +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 "IP adres" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "IP Address" -msgstr "IP adres" - -#: 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 "Icoon" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Icon" -msgstr "Icoon" - -#. 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 "Icoon" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Icon" -msgstr "Icoon" +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 "Icoon" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Icon" -msgstr "Icoon" - -#. 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 "Icoon" - -#. Label of a Select field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "Icon" -msgstr "Icoon" - -#. Label of a Icon field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Icon" -msgstr "Icoon" - -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Icon" -msgstr "Icoon" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Icon" -msgstr "Icoon" +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 "Pictogram verschijnt op de knop" +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 "Identiteitsdetails" +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 "Als Strikt Gebruiker Toestemming is aangevinkt en Gebruikers Toestemming is gedefinieerd voor een DocType voor een gebruiker, worden alle documenten waar de waarde van de link leeg is, niet getoond aan die gebruiker" +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 "Als Gecontroleerd workflow-status niet status lijstweergave overschrijft" - #. 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 "Als Gecontroleerd workflow-status niet status lijstweergave overschrijft" +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 "Als de eigenaar" +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 "Indien aangevinkt, worden alle andere workflows inactief." +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 "Indien ingeschakeld, kunnen gebruikers niet zien het dialoogvenster Bevestigen Access." +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/core/doctype/role/role.json msgid "If disabled, this role will be removed from all users." -msgstr "Indien uitgeschakeld, zal deze rol van alle gebruikers worden verwijderd." +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 "Indien ingeschakeld, kan de gebruiker zich aanmelden vanaf elk IP-adres met behulp van Two Factor Auth, dit kan ook worden ingesteld voor alle gebruikers in Systeeminstellingen" +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 "Indien ingeschakeld, kunnen alle gebruikers inloggen vanaf elk IP-adres met behulp van Two Factor Auth. Dit kan ook alleen voor specifieke gebruiker (s) in de gebruikerspagina worden ingesteld" +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 "Indien ingeschakeld, worden wijzigingen in het document bijgehouden en weergegeven in de tijdlijn" +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 "Indien ingeschakeld, worden documentweergaven bijgehouden, dit kan meerdere keren gebeuren" +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 "Indien ingeschakeld, wordt het document gemarkeerd als zichtbaar, de eerste keer dat een gebruiker het opent" +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 "Indien ingeschakeld, wordt de melding weergegeven in de vervolgkeuzelijst met meldingen in de rechterbovenhoek van de navigatiebalk." +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 "Indien ingeschakeld, wordt de wachtwoordsterkte afgedwongen op basis van de minimum wachtwoordcijferwaarde. Een waarde van 2 is medium sterk en 4 is zeer sterk." +#: 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 "Indien ingeschakeld, zullen gebruikers die zich aanmelden vanuit een beperkt IP-adres, niet om twee factoren worden gevraagd" +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 "Indien ingeschakeld, worden gebruikers elke keer in kennis gesteld wanneer ze inloggen. Indien niet ingeschakeld, worden gebruikers slechts een keer in kennis gesteld." +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 "Als niet-standaard poort (bijv. 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 "Als niet-standaardpoort (bijvoorbeeld 587). Als u in Google Cloud poort 2525 probeert." +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 "Indien niet-standaard poort (bijv. 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 "Indien niet-standaard poort (bijv. 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 "Indien niet ingesteld, zal de valutaprecisie afhangen van het nummerformaat" +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 "Als de gebruiker een rol gecontroleerd heeft, dan is de gebruiker wordt een "Systeem". "Systeem" heeft toegang tot de 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 "Als de gebruiker is de eigenaar" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "If user is the owner" -msgstr "Als de gebruiker is de eigenaar" - -#: core/doctype/data_export/exporter.py:206 -msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." -msgstr "Als u wilt bijwerken, selecteert u \"Overschrijven\" anders bestaande rijen worden niet verwijderd." - -#: core/doctype/data_export/exporter.py:190 -msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "Als u het uploaden van nieuwe records, \"Naming Series\" verplicht wordt, indien aanwezig." - -#: core/doctype/data_export/exporter.py:187 -msgid "If you are uploading new records, leave the \"name\" (ID) column blank." -msgstr "Als u het uploaden van nieuwe records, laat de \"naam\" (ID) kolom leeg." - -#: 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 "Als u dit instelt , zal deze post in een drop -down onder de gekozen basismotor ." +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 "Als u denkt dat dit niet is toegestaan, wijzigt u het beheerderswachtwoord." +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 "Als uw gegevens in HTML, kopieer plak de exacte HTML-code met de labels." +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 "Negeer Gebruikersmachtigingen" +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 "Negeer Gebruikersmachtigingen" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Ignore User Permissions" -msgstr "Negeer Gebruikersmachtigingen" - -#. 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 "Negeer XSS-filter" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Ignore XSS Filter" -msgstr "Negeer XSS-filter" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Ignore XSS Filter" -msgstr "Negeer XSS-filter" +msgstr "" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Ignore attachments over this size" -msgstr "Negeer bijlagen dan deze omvang" - #. 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 "Negeer bijlagen dan deze omvang" +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 "Genegeerde apps" +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 "Illegale Access Token. Probeer het opnieuw" +msgstr "" -#: model/workflow.py:143 +#: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" -msgstr "Illegale documentstatus voor {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 "Illegale SQL-zoekopdracht" +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 "Afbeelding" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Image" -msgstr "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 "Image" -msgstr "Afbeelding" - +#. 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 "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 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Image" -msgstr "Afbeelding" - +#. 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 "Afbeelding" +msgstr "" -#. Label of a Attach Image field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Image" -msgstr "Afbeelding" - -#. 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 "Afbeelding" - -#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Image" -msgstr "Afbeelding" - -#. 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 "beeldveld" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Image Field" -msgstr "beeldveld" - -#. 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 "Afbeelding Link" +msgstr "" -#. Label of a Float field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Width" msgstr "" -#: core/doctype/doctype/doctype.py:1457 +#: frappe/core/doctype/doctype/doctype.py:1506 msgid "Image field must be a valid fieldname" -msgstr "Afbeelding veld moet een geldige veldnaam te zijn" +msgstr "" -#: core/doctype/doctype/doctype.py:1459 +#: frappe/core/doctype/doctype/doctype.py:1508 msgid "Image field must be of type Attach Image" -msgstr "Afbeelding veld moet van het type zijn Attach Image" +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 "Afbeeldingen" +#: 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 "stilzwijgend" +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 "Importeren" +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 "Importeren" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Import" -msgstr "Importeren" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Import" -msgstr "Importeren" +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 "Data importeren" +msgstr "" -#: email/doctype/email_group/email_group.js:14 +#: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" -msgstr "Import e-mail van" +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 "Importeer bestand" +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 "Importeer bestandsfouten en waarschuwingen" +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 "Importeren Log" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Log Preview" -msgstr "Voorbeeld van logboek importeren" +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 "Voorbeeld importeren" +msgstr "" -#: core/doctype/data_import/data_import.js:41 +#: frappe/core/doctype/data_import/data_import.js:41 msgid "Import Progress" -msgstr "Voortgang importeren" +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 "Abonnees Import" +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 "Type invoer" +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 "Waarschuwingen importeren" +msgstr "" -#: public/js/frappe/views/file/file_view.js:117 +#: frappe/public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" -msgstr "Zip importeren" +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 "Importeer vanuit Google Spreadsheets" +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 "Importsjabloon moet van het type .csv, .xlsx of .xls zijn" +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 "Importsjabloon moet een koptekst bevatten en minimaal één rij." +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 "{0} van {1} importeren" +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 "{0} van {1}, {2} importeren" +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 dagen" - -#. 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 Filter" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Filter" -msgstr "In Filter" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Global Search" -msgstr "In Global Search" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Global Search" -msgstr "In Global Search" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Global Search" -msgstr "In Global Search" - -#: 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 lijstweergave" +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 lijstweergave" +#: 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 lijstweergave" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In List View" -msgstr "In lijstweergave" - -#. 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 voorbeeld" +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 voorbeeld" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Preview" -msgstr "In voorbeeld" - -#: core/doctype/data_import/data_import.js:42 +#: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" -msgstr "Bezig" +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 "Als antwoord op" +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 Standard Filter" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Standard Filter" -msgstr "In Standard Filter" - -#. Description of the Onboarding Step 'Generate Custom Reports' -#: custom/onboarding_step/report_builder/report_builder.json -msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n" msgstr "" #. Description of the 'Font Size' (Float) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "In points. Default is 9." -msgstr "In punten. Standaard is 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 seconden" - -#: core/doctype/recorder/recorder_list.js:107 -msgid "Inactive" -msgstr "Inactief" - -#: public/js/frappe/ui/field_group.js:131 -msgid "Inavlid Values" msgstr "" -#: email/doctype/email_account/email_account_list.js:19 -msgid "Inbox" -msgstr "Postvak IN" +#: 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 "Postvak IN" +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 "Inbox-gebruiker" +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 "Inclusief Zoeken 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 "Inclusief thema van apps" +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 "Stuur document Web View-link in e-mail" +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 "Inspringen opnemen" +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 "Inclusief symbolen, cijfers en hoofdletters in het wachtwoord" +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 "Inkomende e-mailaccount niet correct" +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 "Onvolledige inloggegevens" +msgstr "" -#: email/smtp.py:103 +#: frappe/email/smtp.py:104 msgid "Incorrect Configuration" -msgstr "Onjuiste configuratie" +msgstr "" -#: utils/csvutils.py:207 +#: frappe/utils/csvutils.py:234 msgid "Incorrect URL" -msgstr "Onjuiste URL" +msgstr "" -#: utils/password.py:90 +#: frappe/utils/password.py:101 msgid "Incorrect User or Password" -msgstr "Onjuiste gebruiker of wachtwoord" +msgstr "" -#: twofactor.py:177 twofactor.py:189 +#: frappe/twofactor.py:176 frappe/twofactor.py:188 msgid "Incorrect Verification code" -msgstr "Incorrecte Verificatiecode" +msgstr "" -#: model/document.py:1352 -msgid "Incorrect value in row {0}: {1} must be {2} {3}" -msgstr "Onjuiste waarde in rij {0} : {1} moet zijn {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 "Onjuiste waarde: {0} moet zijn {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 "Index" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Index" -msgstr "Index" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Index" -msgstr "Index" - -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Index" -msgstr "Index" - -#. 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 "Index-webpagina's voor zoeken" +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 "Indicator" +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 "Initial synchronisatietelketen" +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 "Plaats" +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 "Invoegen na" +msgstr "" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Insert After" -msgstr "Invoegen na" - -#: 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 "Steek Na kan niet worden ingesteld als {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 "Plaats Na veld '{0}' genoemd in Aangepast veld '{1}', met label '{2}', bestaat niet" +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 "Kolom invoegen vóór {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 "Voeg nieuwe records in" +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 "Stijl invoegen" +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 "Geïnstalleerde applicatie" +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 "Geïnstalleerde applicaties" +msgstr "" -#. Label of a Table field in DocType 'Installed Applications' -#: core/doctype/installed_applications/installed_applications.json -msgctxt "Installed Applications" -msgid "Installed Applications" -msgstr "Geïnstalleerde applicaties" - -#: 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 "Onvoldoende Toestemming voor {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 "integratie Request" - -#. Name of a Workspace -#: integrations/workspace/integrations/integrations.json -msgid "Integrations" -msgstr "Integraties" +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 "Integraties" - -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Integrations" -msgstr "Integraties" +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 "Integraties kunnen dit veld gebruiken om de e-mail status ingevoerd" +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 "Interesses" +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 "tussen-" +msgstr "" -#: public/js/frappe/request.js:232 +#: frappe/public/js/frappe/request.js:235 msgid "Internal Server Error" -msgstr "Interne Server Fout" +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 "Introduceer uw bedrijf aan de website bezoeker." +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 "Introductie" - -#. Label of a Text Editor field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Introduction" -msgstr "Introductie" - -#. 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 "Inleidende informatie voor het Contactformulier" +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 "Ongeldig" +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 "Ongeldige "depends_on" -uitdrukking" +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 "Ongeldige expressie "afhankelijk_on" ingesteld in filter {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 "Ongeldige CSV-formaat" +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 "Ongeldige inloggegevens" +msgstr "" -#: utils/data.py:124 utils/data.py:285 +#: frappe/utils/data.py:136 frappe/utils/data.py:299 msgid "Invalid Date" -msgstr "Ongeldige datum" +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 "Ongeldige filterwaarde" +msgstr "" -#: website/doctype/website_settings/website_settings.py:83 +#: frappe/website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" -msgstr "Ongeldige Startpagina" +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 "Ongeldige Link" +msgstr "" -#: www/login.py:112 +#: frappe/www/login.py:128 msgid "Invalid Login Token" -msgstr "Ongeldig Aanmelden 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 "Ongeldige Mail Server . Aub herstellen en opnieuw proberen." +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 "Ongeldige optie" +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 "Ongeldige Output Format" +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 "ongeldig wachtwoord" +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 "Ongeldig Verzoek" +msgstr "" -#: desk/search.py:26 +#: frappe/desk/search.py:26 msgid "Invalid Search Field {0}" -msgstr "Ongeldig zoekveld {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 "Ongeldige URL" +msgstr "" -#: email/receive.py:150 +#: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." -msgstr "Ongeldige gebruikersnaam of wachtwoord Ondersteuning . Aub verwijderen en probeer het opnieuw ." +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 "Ongeldige kolom" +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 "Ongeldige expressie ingesteld in filter {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 "Ongeldige expressie ingesteld in filter {0} ({1})" +msgstr "" -#: utils/data.py:2128 +#: frappe/utils/data.py:2186 msgid "Invalid field name {0}" -msgstr "Ongeldige veldnaam {0}" +msgstr "" -#: core/doctype/doctype/doctype.py:1048 +#: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" -msgstr "Ongeldige veldnaam '{0}' in autoname" +msgstr "" -#: client.py:344 +#: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" -msgstr "Ongeldig pad: {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 "Ongeldig filter: {0}" +msgstr "" -#: model/utils/__init__.py:69 -msgid "Invalid include path" -msgstr "Ongeldig pad opnemen" - -#: 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 "Ongeldige json toegevoegd in de aangepaste opties: {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 "Ongeldige of beschadigde inhoud om te importeren" +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 "Ongeldig sjabloonbestand voor importeren" +#: 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 "ongeldige gebruikersnaam of wachtwoord" +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 "Ongeldige {0} voorwaarde" +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 "Omgekeerde" +msgstr "" -#: contacts/doctype/contact/contact.js:25 +#: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" -msgstr "Uitnodigen als gebruiker" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:22 +#: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" -msgstr "Is" +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 "Is actief" +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 "Is Attachments Folder" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Calendar and Gantt" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Calendar and Gantt" +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" msgstr "" -#: core/doctype/doctype/doctype_list.js:34 -msgid "Is Child Table" -msgstr "Is onderliggende tabel" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Child Table" -msgstr "Is onderliggende tabel" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Is Child Table" -msgstr "Is onderliggende tabel" - -#. 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 "Is compleet" +msgstr "" -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Is Complete" -msgstr "Is compleet" - -#. 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 "Is voltooid" +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 "Is Aangepast veld" +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 "Is Standaard" +msgstr "" -#. Label of a Check field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" -msgid "Is Default" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" -msgid "Is Default" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Is Default" -msgstr "Is Standaard" - -#. 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 "Is Folder" +msgstr "" -#: public/js/frappe/list/list_filter.js:43 +#: frappe/public/js/frappe/list/list_filter.js:43 msgid "Is Global" -msgstr "Is wereldwijd" +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 "Is Thuis Folder" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Is Mandatory Field" -msgstr "Is Verplicht veld" +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 "Is optionele staat" +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 "Is primair" +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 "Is Primaire contactpersoon" +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 "Is primair mobiel" +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 "Is primaire telefoon" +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 "Is Private" +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 "Is openbaar" +msgstr "" -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Is Public" -msgstr "Is openbaar" - -#. 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 "Wordt gepubliceerd Field" +msgstr "" -#: core/doctype/doctype/doctype.py:1466 +#: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" -msgstr "Wordt gepubliceerd Het gebied moet een geldige veldnaam" +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 "Is 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 "Is 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 "Is 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 "Wordt overgeslagen" +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 "is 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 "Is Standaard" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Select field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" -msgid "Is Standard" -msgstr "Is Standaard" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Is Standard" -msgstr "Is Standaard" - -#: 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 "Kan ingediend worden" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Submittable" -msgstr "Kan ingediend worden" - -#. 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 "is Table" +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 "Is boom" +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 "Is uniek" +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 "Het is riskant om dit bestand te verwijderen: {0}. Neem dan contact op met uw systeembeheerder." +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 "Artikellabel" +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 "Type voorwerp" +msgstr "" -#: utils/nestedset.py:234 +#: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" -msgstr "Artikel kan niet worden toegevoegd aan zijn eigen onderliggende artikelen." +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 "JSON-aanvraaginstantie" +msgstr "" -#: templates/signup.html:5 +#: frappe/templates/signup.html:5 msgid "Jane Doe" msgstr "" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "JavaScript" -msgstr "JavaScript" +msgstr "" #. Description of the 'Javascript' (Code) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" -msgstr "JavaScript Formaat : 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 is uitgeschakeld in uw 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: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 "Spring naar veld" +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 "Kanban Board Column" +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 "Naam 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 "Naam 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 "Sleutel" +#: 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 "Sleutel" +#. 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 "Sleutel" +#. 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 "Sleutel" - -#. Label of a Small Text field in DocType 'Webhook Header' -#: integrations/doctype/webhook_header/webhook_header.json -msgctxt "Webhook Header" -msgid "Key" -msgstr "Sleutel" - -#. 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 "Sleutel" +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 "Toetsenbord sneltoetsen" +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 "Kennis basis" +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 "Knowledge Base Inzender" +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 "Knowledge Base Editor" +msgstr "" -#: public/js/frappe/utils/number_systems.js:27 -#: public/js/frappe/utils/number_systems.js:49 +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 msgctxt "Number system" msgid "L" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Auth" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Custom Settings" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Email Field" -msgstr "LDAP Email Field" +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 Voornaam Field" +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 "LDAP-groep" +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 "LDAP-groepsveld" +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 "LDAP-groepstoewijzing" +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 "LDAP-groepstoewijzingen" +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 "LDAP-achternaamveld" +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 "Veld LDAP-middelste naam" +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 "LDAP mobiel veld" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:160 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 msgid "LDAP Not Installed" -msgstr "LDAP niet geïnstalleerd" +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 "LDAP-telefoonveld" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search String" -msgstr "LDAP Search 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 "LDAP-beveiliging" +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 "LDAP-instellingen" - #. 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 "LDAP-instellingen" +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 "Maken en toewijzen van LDAP-gebruikers" +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 Gebruikersnaam Field" +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 is niet ingeschakeld." +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 "Label" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js: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 "Label" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocType Layout Field' -#: custom/doctype/doctype_layout_field/doctype_layout_field.json -msgctxt "DocType Layout Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Chart' -#: desk/doctype/workspace_chart/workspace_chart.json -msgctxt "Workspace Chart" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Custom Block' -#: desk/doctype/workspace_custom_block/workspace_custom_block.json -msgctxt "Workspace Custom Block" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Number Card' -#: desk/doctype/workspace_number_card/workspace_number_card.json -msgctxt "Workspace Number Card" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Label" -msgstr "Label" - -#. Label of a HTML field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "Label Help" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Label and Type" -msgstr "Label en Type" +msgstr "" -#: custom/doctype/custom_field/custom_field.py:141 +#: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" -msgstr "Label is verplicht" +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 "Landing Page" +msgstr "" -#: public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:30 msgid "Landscape" -msgstr "Landschap" +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 "Taal" +msgstr "" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Language" -msgstr "Taal" - -#. Label of a Link field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Language" -msgstr "Taal" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Language" -msgstr "Taal" - -#. 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 "taalcode" +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 "Taalnaam" +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 "Laatst actief" +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 "Laatste back-up aan" +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 "Laatste uitvoering" +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 "Laatste 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 "Laatst Bekende Versies" +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 "Laatst ingelogd" +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 "Laatst gewijzigd op" +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 "Vorige maand" +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 "Achternaam" +msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Last Name" -msgstr "Achternaam" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Last Name" -msgstr "Achternaam" - -#. 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 "Datum laatste wachtwoord opnieuw instellen" - -#. 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 "Datum toewijzingsdatum" +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 "Het laatste kwartier" +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 "Last Sync On" +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 "Laatst gesynchroniseerd" +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 "Laatst bijgewerkt door" +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 "Laatst aangepast op" +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 "Laatste gebruiker" +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 "Vorige week" +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 "Vorig jaar" +msgstr "" -#: public/js/frappe/widgets/chart_widget.js:698 +#: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" -msgstr "Laatst gesynchroniseerd {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 "Scorebord" - -#. 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 "Laat leeg om altijd te herhalen" +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 "Laat dit gesprek" +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 "Links" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Left" -msgstr "Links" - #. 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 "Links" +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 "Links" +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 "Links dit gesprek" +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 "Lengte" +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 "Lengte" - -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Length" -msgstr "Lengte" - -#: 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 "Lengte van {0} moet tussen 1 en 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 "Laten we beginnen" - -#. 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 "Laten we voorkomen dat herhaalde woorden en tekens" +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 "Laten we teruggaan naar 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 "Brief" +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 "Brief Hoofd" +msgstr "" -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Letter Head" -msgstr "Brief Hoofd" - -#. 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 "Briefhoofd op basis van" +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 "Briefhoofd afbeelding" +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 "Brief Hoofd Naam" +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 "Brief Hoofd 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 "Niveau" +msgstr "" -#. Label of a Int field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Level" -msgstr "Niveau" - -#. Label of a Int field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Level" -msgstr "Niveau" - -#. Label of a Select field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Level" -msgstr "Niveau" - -#: 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 "Niveau 0 is voor machtigingen op documentniveau, hogere niveaus voor machtigingen op veldniveau." +msgstr "" -#. Label of a Data field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Level Name" -msgstr "Niveau naam" +#: 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 "Licentie" +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 "Lichte kleur" +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 "Leuk vinden" - #. 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 "Leuk vinden" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Like" -msgstr "Leuk vinden" - -#. 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 "Vond" +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 "Vond Door" +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 "Sympathieën" +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 "Begrenzing" +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 "Beperk aantal DB-back-ups" +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 "Lijn" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Link" -msgstr "Koppeling" - -#. 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 "Koppeling" - -#. Label of a Small Text field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Link" -msgstr "Koppeling" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Link" -msgstr "Koppeling" - -#. Label of a Data field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Link" -msgstr "Koppeling" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Link" -msgstr "Koppeling" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Link" -msgstr "Koppeling" - -#. 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 "Koppeling" - -#. 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 "Koppeling" - +#. 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 "Koppeling" +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 "Koppel kaarten" +msgstr "" -#. Label of a Int field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Count" msgstr "" -#. Label of a Section Break field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Details" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "Link DocType" +msgstr "" -#. Label of a Link field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" -msgid "Link DocType" -msgstr "Link DocType" - -#. Label of a Link field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Link DocType" -msgstr "Link DocType" - -#. Label of a Link field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Document Type" -msgstr "Type document koppelen" +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 verlopen" +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 "Veldnaam koppelen" +msgstr "" -#. Label of a JSON field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Link Filters" msgstr "" -#. Label of a JSON field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Link Filters" -msgstr "" - -#. Label of a JSON field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Link Filters" -msgstr "" - -#. Label of a JSON field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Link Filters" -msgstr "" - -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Name" -msgstr "Link Naam" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" -msgid "Link Name" -msgstr "Link Naam" - -#. Label of a Dynamic Link field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" -msgid "Link Name" -msgstr "Link Naam" - -#. Label of a Read Only field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Title" -msgstr "Link Titel" +msgstr "" -#. Label of a Read Only field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" -msgid "Link Title" -msgstr "Link Titel" - -#. 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 "Link naar" +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 "Link naar" +#: 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 "Link naar de pagina die u wilt openen. Laat leeg als u wilt dat een groep ouders te maken." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Linked" -msgstr "Linked" - #. 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 "Linked" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Linked Documents" -msgstr "Gekoppelde documenten" - -#: public/js/frappe/form/linked_with.js:23 +#: frappe/public/js/frappe/form/linked_with.js:23 msgid "Linked With" -msgstr "Linked Met" +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 "Links" - -#. Label of a Table field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Links" -msgstr "Links" +msgstr "" #. Option for the 'Apply To' (Select) field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "List" -msgstr "Lijst" - #. 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 "Lijst" - #. 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 "Lijst" +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 "Lijst filter" - -#. Label of a HTML field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List Setting Message" msgstr "" -#: 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 "Lijstinstellingen" +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 "Lijstinstellingen" - -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "List Settings" -msgstr "Lijstinstellingen" - -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List Settings" -msgstr "Lijstinstellingen" +#: 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 "Instellingen voor lijstweergave" +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 "Lijst een documenttype" +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 "Lijst als [{ "label": _ ( "Jobs"), "route": "banen"}]" - #. 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 "Lijst als [{ "label": _ ( "Jobs"), "route": "banen"}]" +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 "Load Balancing" +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 "Meer laden" +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 "Laden" - -#: core/doctype/data_import/data_import.js:262 -msgid "Loading import file..." -msgstr "Importbestand laden ..." - -#: 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 "Laden ..." +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 "Locatie" +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 "Loggegevens" +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 "Logboekinstelling gebruiker" +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 "Log instellingen" +msgstr "" -#: www/app.py:21 +#: frappe/www/app.py:23 msgid "Log in to access this page." -msgstr "Log in om toegang te krijgen tot deze 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 "Uitgelogd" - -#: 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 "Login" +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 "Login" +msgstr "" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Login" -msgstr "Login" - -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Login After" -msgstr "Login Na" +msgstr "" -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Login Before" -msgstr "Login Voor" +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 "Inloggen Id is vereist" +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 Verplicht" - -#: 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 "Inlogverificatiecode van {}" - -#: 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 "Inloggen en bekijken in 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 "Inloggen niet toegestaan op dit moment" +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 "Login sessie is verlopen, vernieuw pagina om opnieuw te proberen" +msgstr "" -#: templates/includes/comments/comments.html:110 +#: frappe/templates/includes/comments/comments.html:110 msgid "Login to comment" -msgstr "Log in om commentaar" +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 "Login met 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 "Logo breedte" +#: 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 "Afmelden" +msgstr "" -#: core/doctype/user/user.js:179 +#: frappe/core/doctype/user/user.js:197 msgid "Logout All Sessions" -msgstr "Alle sessies uitloggen" +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 "Alle sessies afmelden bij het opnieuw instellen van het wachtwoord" +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 "Afmelden bij alle apparaten na het wijzigen van het wachtwoord" - -#. Label of a Card Break in the Users Workspace -#: core/workspace/users/users.json -msgid "Logs" -msgstr "Logs" +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 "Logs" +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 "Lange 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 "Long Text" -msgstr "Lange tekst" - #. 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 "Lange tekst" +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 "Het lijkt erop dat je de waarde niet hebt gewijzigd" +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 "Laag" +#: 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 "Laag" +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 "Hoofd Sectie" +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 "Hoofdsectie (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 "Hoofdsectie (Markdown)" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Maintenance Manager" -msgstr "Maintenance Manager" +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 "Onderhoud Gebruiker" +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 "Maak "naam" doorzoekbaar in Global Search" - -#. 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 "Maak gebruik van langere toetsenbord patronen" +msgstr "" -#: public/js/frappe/form/multi_select_dialog.js:86 +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" -msgstr "Maak {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 "Maakt de pagina openbaar" - -#: 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 "Verplicht" +#: 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 "Verplicht" +#. 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 "Verplicht" +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 "Verplicht" - -#. 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 "Verplicht" - -#. 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 "Verplicht 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 "Mandatory Depends On" -msgstr "Verplicht hangt af van" - -#. 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 "Verplicht hangt af van" - -#. 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 "Verplichte informatie ontbreekt:" +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 "Verplicht veld: set rol voor" +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 "Verplichte velden: {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 "Verplichte velden vereist tabel {0}, {1} Rij" +msgstr "" -#: public/js/frappe/form/save.js:172 +#: frappe/public/js/frappe/form/save.js:125 msgid "Mandatory fields required in {0}" -msgstr "Verplichte velden zijn verplicht 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 "Verplicht:" +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 "Kaartkolommen" +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 "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" -"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" -"
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" #. 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" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" -#. Label of 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 "Benoemen Series" +msgstr "" -#: model/naming.py:243 +#: frappe/model/naming.py:260 msgid "Naming Series mandatory" -msgstr "Naamgeving Series verplicht" +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 "Navbar-item" +msgstr "" #. Name of a DocType -#: core/doctype/navbar_settings/navbar_settings.json -msgid "Navbar Settings" -msgstr "Navbar-instellingen" - #. 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 "Navbar-instellingen" +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 "Navbar-sjabloon" +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 "Navbar-sjabloonwaarden" +msgstr "" -#: public/js/frappe/ui/keyboard.js:211 -msgid "Navigate Home" -msgstr "Navigeer naar huis" - -#: 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 "Navigeer lijst naar beneden" +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 "Navigeer lijst omhoog" +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 "Negatieve waarde" - -#: utils/nestedset.py:95 +#: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." -msgstr "Geneste set fout. Neem contact op met de beheerder ." +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 "Nieuw" - -#. 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 "Nieuw" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "New" -msgstr "Nieuw" - #. 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 "Nieuw" +msgstr "" -#: public/js/frappe/views/interaction.js:15 +#: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" -msgstr "Nieuwe activiteit" +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 "Nieuwe reactie op {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 "Nieuwe Custom Print Format" +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 "Nieuw document gedeeld {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 "nieuwe e-mail" +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 "Nieuwe e-mailaccount" +msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:45 +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 msgid "New Event" -msgstr "Nieuw evenement" +msgstr "" -#: public/js/frappe/views/file/file_view.js:94 +#: frappe/public/js/frappe/views/file/file_view.js:94 msgid "New Folder" -msgstr "Nieuwe map" +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 "Nieuwe Kanban Board" +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 "Nieuwe vermelding op {0}" +msgstr "" -#: www/contact.py:51 +#: frappe/www/contact.py:61 msgid "New Message from Website Contact Page" -msgstr "Nieuw bericht van de pagina Contact Pagina" +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 "Nieuwe naam" +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 "Nieuwe naam" - -#: email/doctype/email_group/email_group.js:67 +#: frappe/email/doctype/email_group/email_group.js:67 msgid "New Newsletter" -msgstr "Nieuw Nieuwsbrief" +msgstr "" -#: desk/doctype/notification_log/notification_log.py:155 +#: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" -msgstr "Nieuwe melding" +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 "Nieuw wachtwoord" +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 "Naam van nieuwe afdrukindeling" +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 "Nieuwe naam 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 "Nieuwe updates zijn beschikbaar" +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 "Nieuwe waarde in te stellen" +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 "Nieuwe {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 "Nieuw {0} gemaakt" +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 "Nieuw {0} {1} toegevoegd aan 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:391 msgid "New {0} {1} created" -msgstr "Nieuw {0} {1} gemaakt" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:373 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 msgid "New {0}: {1}" -msgstr "Nieuw {0}: {1}" +msgstr "" -#: utils/change_log.py:298 +#: frappe/utils/change_log.py:375 msgid "New {} releases for the following apps are available" -msgstr "Nieuwe {} releases voor de volgende apps zijn beschikbaar" +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 "Nieuwsbrief" - #. 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 "Nieuwsbrief" +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 "Nieuwsbrief E-mail 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 "Nieuwsbrief Manager" +msgstr "" -#: email/doctype/newsletter/newsletter.py:130 +#: frappe/email/doctype/newsletter/newsletter.py:128 msgid "Newsletter has already been sent" -msgstr "Newsletter reeds verzonden" +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 "Nieuwsbrief moet minstens één ontvanger bevatten" - -#: email/doctype/newsletter/newsletter.py:392 -msgid "Newsletters" -msgstr "nieuwsbrieven" - -#: 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 "volgende" - -#. 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 "Volgende actie-e-mailsjabloon" - -#. Label of a HTML field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Next Actions HTML" -msgstr "Volgende acties 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 "Volgende schema datum" +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 "Volgend Stadium" +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 "Volgende synchronisatietoken" +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 "Volgende synchronisatietoken" +#: 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 "Nee" - -#: public/js/frappe/ui/filters/filter.js:501 -msgctxt "Checkbox is not checked" -msgid "No" -msgstr "Nee" - -#: public/js/frappe/ui/messages.js:37 -msgctxt "Dismiss confirmation dialog" -msgid "No" -msgstr "Nee" - +#. 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 "Nee" - -#. Option for the 'Standard' (Select) field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "No" -msgstr "Nee" - #. 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 "Nee" +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 "Nee" +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 "Geen actieve sessies" +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 "Geen kopie" +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 "Geen kopie" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "No Copy" -msgstr "Geen kopie" - -#: 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 "Geen gegevens" +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 "Geen e-mail account" +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 "geen e-mails" +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 "Geen invoer voor de gebruiker {0} gevonden 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 "Geen filters ingesteld" +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 "Geen Google Agenda-evenement om te synchroniseren." +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 "Geen LDAP-gebruiker gevonden voor e-mail: {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 "Geen naam opgegeven voor {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 "Geen toelatingen opgegeven" +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 "Geen Machtigingen ingesteld voor deze criteria." +msgstr "" -#: core/page/dashboard_view/dashboard_view.js:93 +#: frappe/core/page/dashboard_view/dashboard_view.js:93 msgid "No Permitted Charts" -msgstr "Geen toegestane grafieken" +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 "Geen toegestane grafieken op dit 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 "Er is geen printer beschikbaar." +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 "geen resultaten" +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 "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 "Geen waarschuwingen voor vandaag" +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 "Geen wijzigingen in document" +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 "Nog geen reacties" +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 "Geen contacten gekoppeld aan document" +msgstr "" -#: desk/query_report.py:335 +#: frappe/desk/query_report.py:342 msgid "No data to export" -msgstr "Geen gegevens om te exporteren" +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 "Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Instellingen> Afdrukken en branding> Adressjabloon." +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 "Geen documenten gevonden met de tag {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 "Geen e-mailaccount gekoppeld aan de gebruiker. Voeg een account toe onder Gebruiker> E-mailinbox." +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 "Geen bestand bijgevoegd" +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 "Geen verdere gegevens" +msgstr "" -#: templates/includes/search_template.html:49 +#: frappe/templates/includes/search_template.html:49 msgid "No matching records. Search something new" -msgstr "Geen overeenkomende records. Zoek iets nieuws" +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 "Geen items meer om weer te geven" +msgstr "" -#: utils/password_strength.py:45 +#: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." -msgstr "Geen behoefte aan symbolen, cijfers of hoofdletters." +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 "Geen nieuwe Google-contacten gesynchroniseerd." +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 "Geen van Zuilen" +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 "Geen van Rijen (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:827 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" -msgstr "Geen toestemming voor {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 "Geen toestemming om '{0}' {1}" +msgstr "" -#: model/db_query.py:943 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" -msgstr "Geen toestemming om te lezen {0}" +msgstr "" -#: share.py:224 +#: frappe/share.py:220 msgid "No permission to {0} {1} {2}" -msgstr "Geen toestemming om {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 "Geen records verwijderd" +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 "Geen records aanwezig 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 "Er worden geen records geëxporteerd" +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 "Geen template gevonden in pad: {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 "Geen {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 "Niet negatief" +#. 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 "Niet negatief" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Non Negative" -msgstr "Niet negatief" +#: 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 "Geen" +msgstr "" -#: public/js/frappe/form/workflow.js:36 +#: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" -msgstr "Geen: Einde van de Workflow" +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 "Niet Toegestaan" +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 "Geen voorouders van" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:34 +#: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" -msgstr "Niet Nakomelingen van" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:17 +#: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" -msgstr "Ongelijk aan" +msgstr "" -#: app.py:363 www/404.html:3 +#: frappe/app.py:374 frappe/www/404.html:3 msgid "Not Found" -msgstr "Niet gevonden" +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 "Niet In" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:19 +#: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "Niet zoals" +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 "Niet gekoppeld aan een 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: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 "Niet toegestaan" +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 "Niet gepubliceerd" +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 "Niet opgeslagen" +msgstr "" -#: core/doctype/error_log/error_log_list.js:7 +#: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" -msgstr "Niet Gezien" - -#: email/doctype/newsletter/newsletter_list.js:9 -msgid "Not Sent" -msgstr "Niet verzonden" +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 "Niet verzonden" - #. 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 "Niet verzonden" +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 "niet ingesteld" +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 "niet ingesteld" +msgstr "" -#: utils/csvutils.py:77 +#: frappe/utils/csvutils.py:102 msgid "Not a valid Comma Separated Value (CSV File)" -msgstr "Geen geldige waarde ( CSV-file )" +msgstr "" -#: core/doctype/user/user.py:197 +#: frappe/core/doctype/user/user.py:264 msgid "Not a valid User Image." -msgstr "Geen geldige gebruikersafbeelding." +msgstr "" -#: model/workflow.py:118 +#: frappe/model/workflow.py:114 msgid "Not a valid Workflow Action" -msgstr "Geen geldige workflow-actie" +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 "Niet actief" +msgstr "" -#: permissions.py:367 +#: frappe/permissions.py:360 msgid "Not allowed for {0}: {1}" -msgstr "Niet toegestaan voor {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 "Het is niet toegestaan om een {0} document bij te voegen. Schakel Afdrukken toestaan voor {0} in de afdrukinstellingen 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 "Niet toegestaan om geannuleerd documenten af te drukken" +msgstr "" -#: www/printview.py:138 +#: frappe/www/printview.py:162 msgid "Not allowed to print draft documents" -msgstr "Niet toegestaan om ontwerpen van documenten af te drukken" +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 "Niet gevonden" +msgstr "" -#: core/doctype/page/page.py:62 +#: frappe/core/doctype/page/page.py:62 msgid "Not in Developer Mode" -msgstr "Niet in Developer Mode" +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 "Niet in Developer Mode! Stel in site_config.json of maak DocType 'Aangepast'." +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 "Niet toegestaan" +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 "Het is niet toegestaan om {0} te bekijken" - -#. Name of a DocType -#: automation/doctype/auto_repeat/auto_repeat.py:395 -#: desk/doctype/note/note.json -msgid "Note" -msgstr "Opmerking" +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 "Opmerking" +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 "Opmerking gezien door" +msgstr "" -#: www/confirm_workflow_action.html:8 +#: frappe/www/confirm_workflow_action.html:8 msgid "Note:" -msgstr "Notitie:" +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 "Opmerking: standaard worden e-mails voor mislukte back-ups verzonden." - #. 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 "Opmerking: standaard worden e-mails voor mislukte back-ups verzonden." +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 "Opmerking: de paginanaam verandert zal de vorige URL naar deze pagina breken." +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 "Opmerking: voor de beste resultaten moeten afbeeldingen van dezelfde grootte en breedte groter zijn dan hoogte." +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 "Opmerking: meerdere sessies zullen in het geval van mobiele apparatuur worden toegestaan" +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 "Opmerkingen:" +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 "Niets te tonen" +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 "Niets om bij te werken" - -#. Name of a DocType -#: core/doctype/communication/mixins.py:142 -#: email/doctype/notification/notification.json -msgid "Notification" -msgstr "Kennisgeving" - -#. Label of a Section Break field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Notification" -msgstr "Kennisgeving" - -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Notification" -msgstr "Kennisgeving" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Notification" -msgstr "Kennisgeving" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Notification" -msgstr "Kennisgeving" +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 "Kennisgeving" - -#. 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 "Kennisgeving" +msgstr "" #. Name of a DocType -#: desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Notification Log" -msgstr "Meldingslogboek" +msgstr "" #. Name of a DocType -#: email/doctype/notification_recipient/notification_recipient.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" -msgstr "Melding Ontvanger" - -#. Name of a DocType -#: desk/doctype/notification_settings/notification_settings.json -#: public/js/frappe/ui/notifications/notifications.js:36 -msgid "Notification Settings" -msgstr "Notificatie instellingen" +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 "Notificatie instellingen" +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 "Kennisgeving onderschreven document" +msgstr "" -#: public/js/frappe/ui/notifications/notifications.js:49 -#: public/js/frappe/ui/notifications/notifications.js:180 -msgid "Notifications" -msgstr "meldingen" +#: 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 "meldingen" +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 "Kennisgevingen en bulk mails worden verstuurd vanaf deze server voor uitgaande mail." +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 "Gebruikers in kennis stellen op elke login" +msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Notify by Email" -msgstr "Melden per 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 "Notificeren per e-mail" +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 "Houd indien Onbeantwoorde" +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 "Houd indien Onbeantwoorde voor (in minuten)" +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 "Houd gebruikers met een pop-up wanneer deze zich aanmeldt" +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 "Nu" +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 "Aantal" +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 "Nummerkaart" +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 "Nummer Card Link" +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 "Cijferkaarten" +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 "Cijferkaarten" - -#. 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 "Getalnotatie" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Number Format" -msgstr "Getalnotatie" - -#. 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 "Aantal Backups" +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 "Aantal DB-back-ups" +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 "Het aantal DB-back-ups mag niet minder zijn dan 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 "Aantal groepen" +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 "Aantal kolommen voor een veld in een raster (Total kolommen in een raster moet minder dan 11 zijn)" - -#. 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 "Aantal kolommen voor een veld in een lijstweergave of een Grid (Totaal Columns moet minder dan 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 "Aantal kolommen voor een veld in een lijstweergave of een Grid (Totaal Columns moet minder dan 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 Authorization Code" +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 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 "OAuth-client-ID" +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 "OAuth Provider Instellingen" - #. 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 "OAuth Provider Instellingen" +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 "OTP App" +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 "OTP Uitgeversnaam" +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 is opnieuw ingesteld. Herregistratie zal nodig zijn bij de volgende login." +msgstr "" + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Off" -msgstr "Uit" +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 "Kantoor" +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 "Oud Wachtwoord" +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 "Oudere backups worden automatisch verwijderd" +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 "Toestemming voor 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 "Onboarding-stap" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Onboarding Step" -msgstr "Onboarding-stap" +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 "Onboarding Step Map" +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 "Na indiening kunnen de in te dienen documenten niet meer worden gewijzigd. Ze kunnen alleen worden geannuleerd en gewijzigd." - #. 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 "Na indiening kunnen de in te dienen documenten niet meer worden gewijzigd. Ze kunnen alleen worden geannuleerd en gewijzigd." - -#: www/complete_signup.html:7 -msgid "One Last Step" -msgstr "One Last Step" - -#: twofactor.py:283 -msgid "One Time Password (OTP) Registration Code from {}" -msgstr "Registratiecode van één keer wachtwoord (OTP) van {}" - -#: core/doctype/data_export/exporter.py:331 -msgid "One of" -msgstr "Een van de" - -#: 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 "Slechts 200 inserts toegestaan in één verzoek" +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 "Alleen beheerder kan e-mail wachtrij verwijderen" +msgstr "" -#: core/doctype/page/page.py:66 +#: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" -msgstr "Alleen Administrator kunt bewerken" +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 "Alleen Beheerder kan een standaard rapport opslaan. Wijzig de naam en sla op." +msgstr "" -#: recorder.py:234 +#: frappe/recorder.py:316 msgid "Only Administrator is allowed to use Recorder" -msgstr "Alleen de beheerder mag de recorder gebruiken" +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 "Sta alleen Bewerken toe voor" +msgstr "" -#: core/doctype/doctype/doctype.py:1561 +#: frappe/core/doctype/doctype/doctype.py:1620 msgid "Only Options allowed for Data field are:" -msgstr "Alleen de opties die zijn toegestaan voor het gegevensveld zijn:" +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 "Verzend alleen Records bijgewerkt in de laatste X uur" +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 "Enige verplichte velden zijn nodig voor nieuwe records. U kunt niet-verplichte kolommen te verwijderen indien u dat wenst." +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 "Er kan slechts één {0} worden ingesteld als primair." +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 "Alleen standaard DocTypes mogen worden aangepast vanuit het formulier Aanpassen." +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 "Alleen gebruikers die bij het document betrokken zijn, worden vermeld" - -#: 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 "Open" - -#: desk/doctype/todo/todo_list.js:20 -msgctxt "Access" -msgid "Open" -msgstr "Open" - -#. 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 "Open" +#: 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 "Open" - +#. 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 "Open" - #. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Open" -msgstr "Open" - #. 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 "Open" +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 "Open 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 "Open document" +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 "Open documenten" +msgstr "" -#: public/js/frappe/ui/keyboard.js:237 +#: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" -msgstr "Open Help" +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 "Open referentiedocument" +msgstr "" -#: public/js/frappe/ui/keyboard.js:220 +#: frappe/public/js/frappe/ui/keyboard.js:226 msgid "Open Settings" -msgstr "Open instellingen" +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 "Open URL in een nieuw tabblad" +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 "Open een dialoogvenster met verplichte velden om snel een nieuw record te maken" +#: 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 "Open een module of gereedschap" +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 "Lijstitem openen" +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 "Open uw verificatieapparaat op uw mobiele telefoon." +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 "Open {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 "Geopend" +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 "Operatie" +msgstr "" -#: utils/data.py:2063 +#: frappe/utils/data.py:2117 msgid "Operator must be one of {0}" -msgstr "Operator moet een van {0} zijn" +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 "Optie 1" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:102 +#: frappe/custom/doctype/custom_field/custom_field.js:102 msgid "Option 2" -msgstr "Optie 2" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:104 +#: frappe/custom/doctype/custom_field/custom_field.js:104 msgid "Option 3" -msgstr "Optie 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 "Optie {0} voor veld {1} is geen onderliggende tabel" +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 "Optioneel: Stuur altijd naar deze ids. Elke e-mail adres op een nieuwe rij" +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 "Optioneel: De Alert zal worden verzonden als deze expressie waar is" +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 "Opties" +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 "Opties" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Options" -msgstr "Opties" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Options" -msgstr "Opties" - -#. Label of a Small Text field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Options" -msgstr "Opties" - -#. 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 "Opties" - -#. 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 "Opties" - -#: 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 "Opties 'Dynamic Link' type veld moet verwijzen naar een andere Linkeveld met opties als '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 "Opties Help" +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 "Opties voor het selecteren. Elke optie op een nieuwe regel." +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 "Opties voor {0} moeten worden ingesteld voordat u de standaardwaarde instelt." +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 "Opties niet ingesteld voor link veld {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 "Bestellen" +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 Geschiedenis" +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 Geschiedenis rubriek" +msgstr "" -#: public/js/frappe/form/print_utils.js:26 +#: frappe/public/js/frappe/form/print_utils.js:28 msgid "Orientation" -msgstr "oriëntering" +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 "Ander" - #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Other" -msgstr "Ander" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Other" -msgstr "Ander" - #. 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 "Ander" +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 "Uitgaande e-mailaccount niet correct" +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 "uitgang" +msgstr "" -#. Label of a Code field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "Output" -msgstr "uitgang" +#: 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 "uitgang" - -#: 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 "eigenaar" +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-paginaformaat" +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 "PDF-instellingen" +msgstr "" -#: utils/print_format.py:177 +#: frappe/utils/print_format.py:289 msgid "PDF generation failed" -msgstr "PDF-generatie mislukt" +msgstr "" -#: utils/pdf.py:95 +#: frappe/utils/pdf.py:106 msgid "PDF generation failed because of broken image links" -msgstr "PDF generatie mislukt vanwege gebroken image koppelingen" +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 "Bladzijde" - -#. Label of a Link field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Page" -msgstr "Bladzijde" - -#. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Page" -msgstr "Bladzijde" - #. 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 "Bladzijde" - +#. 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 "Bladzijde" - #. 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 "Bladzijde" +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 "Pagina-bouwstenen" +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 "Page Name" +#: 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 "Pagina instellingen" - -#: public/js/frappe/ui/keyboard.js:121 +#: frappe/public/js/frappe/ui/keyboard.js:125 msgid "Page Shortcuts" -msgstr "Paginasnelkoppelingen" +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 "Pagina is verlopen!" +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 niet gevonden" - -#: 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} van {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 "Parameter" +msgstr "" -#: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:606 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" -msgstr "Bovenliggend" +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 "Bovenliggend veld (boom)" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Parent Field (Tree)" -msgstr "Bovenliggend veld (boom)" - -#: core/doctype/doctype/doctype.py:921 +#: frappe/core/doctype/doctype/doctype.py:939 msgid "Parent Field must be a valid fieldname" -msgstr "Bovenliggend veld moet een geldige veldnaam zijn" +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 "Parent Label" +msgstr "" -#: core/doctype/doctype/doctype.py:1148 +#: frappe/core/doctype/doctype/doctype.py:1197 msgid "Parent Missing" msgstr "" -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Parent Page" msgstr "" -#: core/doctype/data_export/exporter.py:24 +#: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" -msgstr "Parent Table" +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 "Bovenliggend element is de naam van het document waaraan de gegevens worden toegevoegd." +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 "Gedeeltelijk succes" +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 "Deelnemers" +msgstr "" -#. Label of a Section Break field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Participants" -msgstr "Deelnemers" +#. 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 "Passief" - -#: 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 "Wachtwoord" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Password" -msgstr "Wachtwoord" - -#. 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 "Wachtwoord" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Password" -msgstr "Wachtwoord" - -#. Label of a Password field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Password" -msgstr "Wachtwoord" - -#. 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 "Wachtwoord" - +#. 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 "Wachtwoord" +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 "Wachtwoord opnieuw instellen" +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 "Limiet voor genereren van link voor opnieuw instellen van wachtwoord" +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 "Wachtwoord succesvol veranderd." +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 "Wachtwoord voor 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 "Wachtwoord nodig of selecteer afwachting wachtwoord" +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 "Instructies om uw wachtwoord opnieuw in te stellen, zijn naar uw e-mail verzonden" +#: 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 "Wachtwoorden komen niet overeen!" +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 "Plakken" +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 "Pad" +msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Path" -msgstr "Pad" - -#. Label of a Small Text field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" -msgid "Path" -msgstr "Pad" - -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Path" -msgstr "Pad" - -#. 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 "Pad" - -#. 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 "Pad naar CA Certs-bestand" +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 "Pad naar servercertificaat" +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 "Pad naar privésleutelbestand" +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 afwachting van" +#. 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 afwachting van" - -#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Pending" -msgstr "In afwachting van" +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 afwachting van goedkeuring" +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 "wachten op verificatie" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Percent" -msgstr "Percentage" - -#. 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 "Percentage" +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 "Percentage" +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 "Percentage" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Period" -msgstr "periode" +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 Level" - -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Perm Level" -msgstr "Perm Level" +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 "blijvend" +msgstr "" -#: public/js/frappe/form/form.js:1047 +#: frappe/public/js/frappe/form/form.js:1028 msgid "Permanently Cancel {0}?" -msgstr "Definitief {0} annuleren?" +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 "Definitief {0} invoeren?" +msgstr "" -#: public/js/frappe/model/model.js:698 +#: frappe/public/js/frappe/model/model.js:733 msgid "Permanently delete {0}?" -msgstr "Definitief {0} verwijderen?" +msgstr "" -#: core/doctype/user_type/user_type.py:83 +#: frappe/core/doctype/user_type/user_type.py:84 msgid "Permission Error" -msgstr "Toelatingsfout" +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 "Toelatingsfout" +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 "Machtigingsniveau" +msgstr "" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Permission Level" -msgstr "Machtigingsniveau" +#: 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 "Machtigingsregels" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Permission Rules" -msgstr "Machtigingsregels" - -#. 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 "Machtigingsregels" +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 "Machtigingen" +msgstr "" -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Permissions" -msgstr "Machtigingen" - -#. 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 "Machtigingen" - -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Permissions" -msgstr "Machtigingen" - -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Permissions" -msgstr "Machtigingen" - -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Permissions" -msgstr "Machtigingen" - -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Permissions" -msgstr "Machtigingen" - -#: 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 "Toegestane documenten voor Gebruiker" +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 "Persoonlijk" +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 "Verzoek tot verwijdering van persoonsgegevens" +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 "Verzoek om download van persoonlijke gegevens" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Phone" -msgstr "Telefoon" +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 "Telefoon" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Phone" -msgstr "Telefoon" - -#. 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 "Telefoon" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Phone" -msgstr "Telefoon" - -#. 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 "Telefoon" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Phone" -msgstr "Telefoon" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Phone" -msgstr "Telefoon" - +#. 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 "Telefoon" +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 "Telefoonnummer" +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 "Kies Kolommen" +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 "Taart" +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 "Fabriek" +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 "Gelieve Dupliceer deze Website thema aan te passen." +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 "Installeer de ldap3-bibliotheek via pip om de ldap-functionaliteit te gebruiken." +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 "Stel een grafiek in" +msgstr "" -#: core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:84 msgid "Please Update SMS Settings" -msgstr "Werk SMS-instellingen bij" +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 "Voeg een onderwerp toe aan uw e-mail" +msgstr "" -#: templates/includes/comments/comments.html:168 +#: frappe/templates/includes/comments/comments.html:168 msgid "Please add a valid comment." -msgstr "Voeg een geldige opmerking toe." +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 "Vraag uw beheerder om uw sign-up te controleren" +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 "Eerst een bestand toevoegen." +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 "Controleer de filterwaarden die zijn ingesteld voor Dashboarddiagram: {}" +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 "Controleer de waarde van "Fetch From" ingesteld voor veld {0}" +msgstr "" -#: core/doctype/user/user.py:1015 +#: frappe/core/doctype/user/user.py:1059 msgid "Please check your email for verification" -msgstr "Controleer uw e-mail voor verificatie" +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 "Controleer alstublieft uw geregistreerde e-mailadres voor instructies over hoe u doorgaat. Sluit dit venster niet aan, daar moet je terugkeren." +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 "Klik op de volgende link om je nieuwe wachtwoord in te stellen" - -#: integrations/doctype/dropbox_settings/dropbox_settings.py:344 -msgid "Please close this window" -msgstr "Sluit dit venster" - -#: www/confirm_workflow_action.html:4 -msgid "Please confirm your action to {0} this document." -msgstr "Bevestig uw actie aan {0} dit document." - -#: 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 "Maak eerst een kaart aan" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.js:42 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 msgid "Please create chart first" -msgstr "Maak eerst een grafiek" +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 "Gelieve niet de sjabloon rubrieken veranderen." +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 "Gelieve een tweede om wijzigingen aan te brengen" +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 "Schakel aub pop - ups in" +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 "Schakel pop-ups in uw browser in" +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 "Zorg ervoor dat uw profiel heeft een e-mailadres" +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 "Voer de Access Token-URL in" +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 "Voer alstublieft URL autoriseren in" +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 "Voer de basis-URL in" +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 "Voer een client-ID in voordat sociale aanmelding is ingeschakeld" +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 "Voer Client Secret in voordat sociale aanmelding is ingeschakeld" +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 "Voer de omleidings-URL in" +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 "Voer het wachtwoord in" +#: 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 "Voer geldige mobiele nummers in" +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 "Zie bijgevoegde {0}: {1}" +msgstr "" -#: core/doctype/navbar_settings/navbar_settings.py:44 -msgid "Please hide the standard navbar items instead of deleting them" -msgstr "Verberg de standaardnavigatiebalkitems in plaats van ze te verwijderen" - -#: 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 "Zorg ervoor dat de referentiecommunicatiedocumenten niet circulair zijn gekoppeld." +msgstr "" -#: model/document.py:810 +#: frappe/model/document.py:987 msgid "Please refresh to get the latest document." -msgstr "Vernieuw om het nieuwste document te krijgen." +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 "Gelieve opslaan voordat het bevestigen." +msgstr "" -#: email/doctype/newsletter/newsletter.py:133 +#: frappe/email/doctype/newsletter/newsletter.py:131 msgid "Please save the Newsletter before sending" -msgstr "Sla de nieuwsbrief op voor het verzenden" +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 "Sla het document voordat opdracht" +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 "Sla het document voordat u opdracht" +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 "Sla het rapport eerst" +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 "Sla op om de sjabloon te bewerken." +msgstr "" -#: desk/page/leaderboard/leaderboard.js:244 -msgid "Please select Company" -msgstr "Selecteer Company" - -#: printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" -msgstr "Selecteer DocType eerste" +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 "Selecteer eerst entiteitstype" +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 "Selecteer alstublieft de minimum wachtwoordcijfer" +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 "Selecteer een bestand of url" +msgstr "" -#: model/rename_doc.py:670 +#: frappe/model/rename_doc.py:685 msgid "Please select a valid csv file with data" -msgstr "Selecteer een geldig CSV-bestand met gegevens" +msgstr "" -#: utils/data.py:285 +#: frappe/utils/data.py:299 msgid "Please select a valid date filter" -msgstr "Selecteer een geldig datumfilter" +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 "Selecteer toepasselijke Doctypes" +msgstr "" -#: model/db_query.py:1140 +#: frappe/model/db_query.py:1140 msgid "Please select atleast 1 column from {0} to sort/group" -msgstr "Selecteer tenminste 1 kolom {0} sorteren / groeperen" +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 "Selecteer eerst een voorvoegsel" +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 "Selecteer het documenttype." +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 "Selecteer {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 "Stel e-mailadres" +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 "Stel een printermap in voor dit afdrukformaat in de Printerinstellingen" +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 "Stel filters" +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 "Stel filters waarde in Report Filter tabel." +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 "Stel eerst de volgende documenten in dit Dashboard als standaard in." - -#: core/doctype/document_naming_settings/document_naming_settings.py:121 -msgid "Please set the series to be used." -msgstr "Stel de reeks in die moet worden gebruikt." - -#: core/doctype/system_settings/system_settings.py:116 -msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" -msgstr "Installeer alstublieft SMS voordat u deze instelt als een verificatiemethode, via SMS-instellingen" - -#: automation/doctype/auto_repeat/auto_repeat.js:102 -msgid "Please setup a message first" -msgstr "Stel eerst een bericht in" - -#: 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 "Specificeer" +#: 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 "Geef aan welke datum veld moet worden gecontroleerd" +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 "Geef aan welke waarde veld moet worden gecontroleerd" +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 "Probeer het opnieuw" +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 "Verifieer uw email adres alstublieft" +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 "Puntallocatie Periodiciteit" +#: 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 "punten" +#. 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 "punten" - -#. 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 "punten" - -#: templates/emails/energy_points_summary.html:40 -msgid "Points Given" -msgstr "Gegeven punten" - -#. 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 "haven" - -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Port" -msgstr "haven" - -#. 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 "haven" - -#. 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 "portal Instellingen" - #. 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 "portal Instellingen" +msgstr "" -#: public/js/frappe/form/print_utils.js:29 +#: frappe/public/js/frappe/form/print_utils.js:31 msgid "Portrait" -msgstr "Portret" +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 "Positie" +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 "Bericht" +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 "Post-" +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 "Postcode" +msgstr "" -#. Group in Blog Category's connections -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Posts" -msgstr "Berichten" +#. 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 "Berichten van {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 "Berichten opgeslagen onder {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 "Precisie" +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 "Precisie" - -#. Label of a Select field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Precision" -msgstr "Precisie" - -#. 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 "Precisie" - -#: core/doctype/doctype/doctype.py:1349 +#: frappe/core/doctype/doctype/doctype.py:1400 msgid "Precision should be between 1 and 6" -msgstr "Precision moet tussen 1 en 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 "Voorspelbare vervangingen als '@' in plaats van 'a' niet helpen heel veel." +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 "Voorkeur Factuuradres" +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 "Voorkeur verzendadres" +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 "Voorvoegsel" - -#. 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 "Voorvoegsel" +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 "Voorbereid rapport" +msgstr "" -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Prepared Report" -msgstr "Voorbereid rapport" +#. 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 "Voorbereid rapport gebruiker" +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 "Rapport wordt opgesteld" +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 "Druk op Enter om te bewaren" +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 "Voorbeeld" +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 "Voorbeeld" - -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Preview" -msgstr "Voorbeeld" - -#. Label of a Section Break field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "Preview" -msgstr "Voorbeeld" - -#. Label of a Attach Image field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Preview" -msgstr "Voorbeeld" - -#. Label of a Tab Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Preview" -msgstr "Voorbeeld" - -#. 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 "Voorbeeldbericht" +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 "vorig" - -#: 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 "Vorige hasj" +#: 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 "Primair" +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 "Primaire kleur" +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 "Afdrukken" +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 "Afdrukken" +msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Print" -msgstr "Afdrukken" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Print" -msgstr "Afdrukken" - -#: public/js/frappe/list/bulk_operations.js:39 +#: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" -msgstr "Documenten afdrukken" - -#. 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 "Print Formaat" - -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Print Format" -msgstr "Print Formaat" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Print Format" -msgstr "Print Formaat" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Print Format" -msgstr "Print Formaat" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Print Format" -msgstr "Print Formaat" +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 "Print Formaat" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Print Format" -msgstr "Print Formaat" +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 "Print Format 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 "Print Format 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 "Print Formaat Help" +msgstr "" -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Type" -msgstr "Print Formaat Type" +msgstr "" -#: www/printview.py:407 +#: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" -msgstr "Print Formaat {0} is uitgeschakeld" - -#. 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 "Print Verberg" +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 "Print Verberg" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Hide" -msgstr "Print Verberg" - -#. 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 "Print verbergen Als Nee Waarde" +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 "Print verbergen Als Nee Waarde" +#: 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 "Print verbergen Als Nee Waarde" - -#: public/js/frappe/form/print_utils.js:195 +#: frappe/public/js/frappe/form/print_utils.js:197 msgid "Print Sent to the printer!" -msgstr "Afdrukken Verzonden naar de printer!" +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 "Printserver" - -#. 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 "Afdrukinstellingen" - -#. Label of a Section Break field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Print Settings" -msgstr "Afdrukinstellingen" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Print Settings" -msgid "Print Settings" -msgstr "Afdrukinstellingen" - +#. 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 "Print Stijl" +#: 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 "Print Stijl" +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 "Naam afdrukstijl" +msgstr "" -#. Label of a HTML field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Style Preview" -msgstr "Print Stijl Voorbeeld" +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 "Afdrukbreedte" - -#. 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 "Afdrukbreedte" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Width" -msgstr "Afdrukbreedte" +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 "Drukbreedte van het veld, als het veld een kolom in een tabel" +msgstr "" -#: public/js/frappe/form/form.js:170 +#: frappe/public/js/frappe/form/form.js:170 msgid "Print document" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print with letterhead" -msgstr "Afdrukken met briefhoofd" +msgstr "" -#: printing/page/print/print.js:803 +#: frappe/printing/page/print/print.js:830 msgid "Printer" -msgstr "Printer" +msgstr "" -#: printing/page/print/print.js:780 +#: frappe/printing/page/print/print.js:807 msgid "Printer Mapping" -msgstr "Printertoewijzing" +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 "Printernaam" +msgstr "" -#: printing/page/print/print.js:772 +#: frappe/printing/page/print/print.js:799 msgid "Printer Settings" -msgstr "Printer instellingen" +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 "Afdrukken" +msgstr "" -#: utils/print_format.py:179 +#: frappe/utils/print_format.py:291 msgid "Printing failed" -msgstr "Afdrukken mislukt" +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 "Prioriteit" - -#. Label of a Int field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Priority" -msgstr "Prioriteit" - -#. 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 "Prioriteit" - -#. Label of a Int field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Priority" -msgstr "Prioriteit" - -#. Label of a Select field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Priority" -msgstr "Prioriteit" - -#. Label of a Int field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Priority" -msgstr "Prioriteit" - -#: desk/doctype/note/note_list.js:8 -msgid "Private" -msgstr "Prive-" - -#. 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 "Prive-" +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 "Prive-" +msgstr "" -#. Label of a Check field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Private" -msgstr "Prive-" +#. 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: 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:
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 "leverancier" +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 "Provider naam" - -#. 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 "Provider naam" - -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Provider Name" -msgstr "Provider naam" - -#: 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 "Publiek" +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 "Publiek" +msgstr "" -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Public" -msgstr "Publiek" +#. 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 "Publiek" - -#: 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 "Publiceren" +msgstr "" -#. Label of a Check field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" -msgid "Publish" -msgstr "Publiceren" - -#. 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 "Gepubliceerd" +msgstr "" -#. Label of a Check field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Published" -msgstr "Gepubliceerd" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Published" -msgstr "Gepubliceerd" - -#. 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 "Gepubliceerd op" +msgstr "" -#: website/doctype/blog_post/templates/blog_post.html:59 +#: frappe/website/doctype/blog_post/templates/blog_post.html:59 msgid "Published on" -msgstr "gepubliceerd op" +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 "Uit Google Agenda halen" +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 "Uit Google Contacten halen" +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 "Getrokken uit Google Agenda" +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 "Getrokken uit Google Contacten" +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 "Purchase Manager" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "Aankoop 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 "Purchase User" -msgstr "Aankoop Gebruiker" +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 "Push naar Google Agenda" +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 "Push naar Google Contacten" +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 "QR-code voor inloggen verificatie" +msgstr "" -#: public/js/frappe/form/print_utils.js:204 +#: frappe/public/js/frappe/form/print_utils.js:206 msgid "QZ Tray Failed: " -msgstr "QZ-lade mislukt:" - -#: public/js/frappe/utils/common.js:401 -msgid "Quarterly" -msgstr "Kwartaal" - -#. 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 "Kwartaal" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Quarterly" -msgstr "Kwartaal" - #. 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 "Kwartaal" +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 "Query-opties" +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 "Query Rapport" - #. 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 "Query Rapport" +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 "Wachtrij moet onderdeel uitmaken van {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 "Wachtrij" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Queued" -msgstr "Wachtrij" - #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Queued" -msgstr "Wachtrij" - #. 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 "Wachtrij" +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 "De wachtrij voor back-up. Het kan een paar minuten tot een uur." +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 "In afwachting van back-up. U ontvangt een email met de downloadlink" +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 "Snelle invoer" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Quick Entry" -msgstr "Snelle invoer" +#: 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 "RAW-informatielogboek" +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 "reeks" +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 "Beoordeling" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Rating" -msgstr "Beoordeling" - -#. 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 "Beoordeling" +#. 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 "Beoordeling" - +#. 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 "Beoordeling" +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 "Ruwe opdrachten" +msgstr "" -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Raw Commands" -msgstr "Ruwe opdrachten" - -#. Label of a Code field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Raw Email" -msgstr "Raw Email" +msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Raw Printing" -msgstr "Raw afdrukken" +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 "Raw afdrukken" - -#: 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 "Re: {0}" - -#: client.py:459 -msgid "Read" -msgstr "Lezen" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Read" -msgstr "Lezen" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Read" -msgstr "Lezen" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Read" -msgstr "Lezen" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Read" -msgstr "Lezen" - +#. 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 "Lezen" - -#. Label of a Check field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Read" -msgstr "Lezen" - -#. 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 "Lezen" - -#: public/js/form_builder/form_builder.bundle.js:83 -msgid "Read Only" -msgstr "Alleen lezen" - -#. 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 "Alleen lezen" - -#. 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 "Alleen lezen" +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 "Alleen lezen" +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 "Alleen lezen" - -#. 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 "Alleen lezen 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 "Read Only Depends On" -msgstr "Alleen lezen hangt af van" - -#. 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 "Alleen lezen hangt af van" - -#. 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 "Leestijd" +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 "Lezen door ontvanger" +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 "Lezen door ontvanger op" +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 "Reden" +#. 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 "Reden" +msgstr "" -#. Label of a Long Text field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "Reason" -msgstr "Reden" - -#: public/js/frappe/views/reports/query_report.js:815 +#: frappe/public/js/frappe/views/reports/query_report.js:889 msgid "Rebuild" -msgstr "herbouwen" +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 "ontvangen" - -#: 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 "Ontvanger per documentveld" +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 "Ontvanger per rol" +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 "Receiver Parameter" +msgstr "" -#: utils/password_strength.py:125 +#: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." -msgstr "De afgelopen jaren zijn makkelijk te raden." +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 "Ontvanger" - -#. 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 "Ontvanger" +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 "Ontvanger Uitgeschreven" +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 "Ontvangers" - -#. 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 "Ontvangers" +msgstr "" #. Name of a DocType -#: core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "opnemer" +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 "Redirect URI Bound To Auth Code" +msgstr "" -#. Label of a Text field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Redirect URIs" -msgstr "redirect URI" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Redirect URL" -msgstr "redirect URL" +msgstr "" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Redirect URL" -msgstr "redirect URL" +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" msgstr "" -#: sessions.py:148 +#: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" -msgstr "Redis cache server niet actief. Neem contact op met Administrator / Technische ondersteuning" +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 "Ref DocType" +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 "Referentie" +msgstr "" -#. Label of a Section Break field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference" -msgstr "Referentie" - -#. Label of a Section Break field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Reference" -msgstr "Referentie" - -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference" -msgstr "Referentie" - -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Reference" -msgstr "Referentie" - -#. Label of a Section Break field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference" -msgstr "Referentie" - -#. Label of a Section Break field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Reference" -msgstr "Referentie" - -#. 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 "Referentie Datum" +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 "Referentie 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 "Referentie 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 "Referentie 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 "Referentie DocType en referentie Naam noodzakelijk" +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 "Referentie 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 "Referentie 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 "Referentie 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 "Referentie 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 "Referentie document" +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 "Referentie document" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Reference Document" -msgstr "Referentie document" - -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Reference Document" -msgstr "Referentie document" - -#. 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 "Referentie document" - -#. 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document Type" - -#. Label of a Link field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Document Type" -msgstr "Referentie Document Type" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Document Type" -msgstr "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentie Document 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 "Referentienaam" +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 "Referentienaam" - -#. Label of a Dynamic Link field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Name" -msgstr "Referentienaam" - -#. Label of a Dynamic Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Name" -msgstr "Referentienaam" - -#. 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 "Referentienaam" - -#. Label of a Dynamic Link field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Reference Name" -msgstr "Referentienaam" - -#. 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 "Referentienaam" - -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Reference Name" -msgstr "Referentienaam" - -#. Label of a Dynamic Link field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Reference Name" -msgstr "Referentienaam" - -#. Label of a Dynamic Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Reference Name" -msgstr "Referentienaam" - -#. Label of a Dynamic Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Reference Name" -msgstr "Referentienaam" - -#. 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 "eigenaar ref" +msgstr "" -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Owner" -msgstr "eigenaar ref" - -#. Label of a Read Only field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Owner" -msgstr "eigenaar ref" - -#. 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 "Referentierapport" +msgstr "" -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Reference Report" -msgstr "Referentierapport" - -#. Label of a Data field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Reference Report" -msgstr "Referentierapport" - -#. 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 "Referentie Type" +msgstr "" -#: social/doctype/energy_point_rule/energy_point_rule.py:144 -msgid "Reference document has been cancelled" -msgstr "Referentiedocument is geannuleerd" - -#. 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 "Referentie Naam" +msgstr "" -#: templates/emails/auto_reply.html:3 +#: frappe/templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" -msgstr "Referentie: {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 "Verwijzer" +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 "Verwijzer" - -#: 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 "Verversen" +msgstr "" -#: core/page/dashboard_view/dashboard_view.js:177 +#: frappe/core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" -msgstr "Ververs alles" +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 "Vernieuw het Google-blad" +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 "Vernieuwen 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 "Vernieuwen 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 "Vernieuwen 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 "Vernieuwen Token" - -#. Label of a Password field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Refresh Token" -msgstr "Vernieuwen 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 "Verversen ..." +msgstr "" -#: core/doctype/user/user.py:979 +#: frappe/core/doctype/user/user.py:1023 msgid "Registered but disabled" -msgstr "Geregistreerd maar uitgeschakeld" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Rejected" -msgstr "Afgewezen" - #. 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 "Afgewezen" +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 "Opnieuw koppelen" +msgstr "" -#: core/doctype/communication/communication.js:138 +#: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "Relink Communicatie" +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 "Relinked" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Relinked" -msgstr "Relinked" +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 "Herladen" +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 "Vergeet Laatst geselecteerde Value" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Remember Last Selected Value" -msgstr "Vergeet Laatst geselecteerde Value" - -#: 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 "Veld verwijderen" +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 "Verwijder Sectie" +msgstr "" -#: custom/doctype/customize_form/customize_form.js:138 +#: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" -msgstr "Verwijder alle aanpassingen?" +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 "Verwijderd {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 "Hernoemen" +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 "Hernoemen {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 "Hernoemde bestanden en vervangen code in controllers, controleer dit!" +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 "heropenen" +msgstr "" -#: public/js/frappe/form/toolbar.js:479 +#: frappe/public/js/frappe/form/toolbar.js:544 msgid "Repeat" -msgstr "herhalen" +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 "Herhaal op" +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 "Herhaal tot" +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 "Herhaal op dag" +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 "Herhaal dit op de laatste dag van de maand" +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 "Herhaal dit evenement" +msgstr "" -#: utils/password_strength.py:112 +#: frappe/utils/password_strength.py:110 msgid "Repeats like \"aaa\" are easy to guess" -msgstr "Herhalingen als "aaa" zijn makkelijk te raden" +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 "Herhalingen zoals "abcabcabc" zijn slechts iets moeilijker te raden dan "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 "Herhaalt {0}" +msgstr "" -#. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Replied" -msgstr "Beantwoord" +#: 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 "Beantwoord" +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 "Antwoorden" +msgstr "" -#. Label of a Text Editor field in DocType 'Discussion Reply' -#: website/doctype/discussion_reply/discussion_reply.json -msgctxt "Discussion Reply" -msgid "Reply" -msgstr "Antwoorden" - -#: core/doctype/communication/communication.js:62 +#: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" -msgstr "Allen beantwoorden" +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 "Rapport" - -#. 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 "Rapport" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Report" -msgstr "Rapport" - -#. Label of a Link field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Report" -msgstr "Rapport" - -#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Report" -msgstr "Rapport" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Report" -msgstr "Rapport" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Report" -msgstr "Rapport" - -#. 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 "Rapport" - -#. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Report" -msgstr "Rapport" - -#. 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 "Rapport" - #. 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 "Rapport" - +#. 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 "Rapport" - #. 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 "Rapport" - -#: public/js/frappe/list/list_view_select.js:66 -msgid "Report Builder" -msgstr "Rapport Bouwer" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Builder" -msgstr "Rapport Bouwer" - #. 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 "Rapport Bouwer" +msgstr "" #. Name of a DocType -#: core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_column/report_column.json msgid "Report Column" -msgstr "Rapportkolom" +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 "Rapportbeschrijving" +msgstr "" -#: core/doctype/report/report.py:148 +#: frappe/core/doctype/report/report.py:151 msgid "Report Document Error" -msgstr "Rapporteer documentfout" +msgstr "" #. Name of a DocType -#: core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/report_filter/report_filter.json msgid "Report Filter" -msgstr "Rapportfilter" +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 "rapport Filters" +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 "Rapport Verbergen" +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 "Rapport Verbergen" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Report Hide" -msgstr "Rapport Verbergen" - -#. 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 "Informatie melden" +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 "Report Manager" +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 "Rapportnaam" +msgstr "" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Report Name" -msgstr "Rapportnaam" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Report Name" -msgstr "Rapportnaam" - -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Report Name" -msgstr "Rapportnaam" - -#. Label of a Data field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Report Name" -msgstr "Rapportnaam" - -#. Label of a Data field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Name" -msgstr "Rapportnaam" - -#: 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 "Rapportreferentie 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 "Rapport Type" +msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Report Type" -msgstr "Rapport Type" +#: 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 "Rapport Type" +#: 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 "Rapport kan niet worden ingesteld voor Single types" +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 "Rapport bevat geen gegevens. Wijzig de filters of wijzig de rapportnaam" +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 "Rapport heeft geen numerieke velden. Wijzig de rapportnaam" +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 "Rapport succesvol bijgewerkt" +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 "Rapport is niet opgeslagen (er waren fouten)" +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 "Rapport met meer dan 10 kolommen ziet er beter uit in de liggende modus." +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 "Rapport {0} is uitgeschakeld" +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 "Verslag doen van:" - -#: public/js/frappe/ui/toolbar/search_utils.js:531 -msgid "Reports" -msgstr "rapporten" - -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Reports" -msgstr "rapporten" - -#: patches/v14_0/update_workspace2.py:50 -msgid "Reports & Masters" -msgstr "Rapporten en masters" - -#: public/js/frappe/views/reports/query_report.js:851 -msgid "Reports already in Queue" -msgstr "Rapporteert al in wachtrij" - -#: 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 "Verzoek om gegevens" +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 "Verzoekstructuur" +msgstr "" -#: public/js/frappe/request.js:228 +#: frappe/public/js/frappe/request.js:231 msgid "Request Timed Out" -msgstr "Time-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 "URL aanvragen" +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 "Vereist vertrouwd certificaat" +msgstr "" #. Description of the 'LDAP search path for Groups' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" msgstr "" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" msgstr "" -#: core/doctype/communication/communication.js:279 +#: frappe/core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "Res: {0}" +msgstr "" -#: desk/doctype/form_tour/form_tour.js:101 -#: desk/doctype/global_search_settings/global_search_settings.js:19 -#: desk/doctype/module_onboarding/module_onboarding.js:17 -#: website/doctype/portal_settings/portal_settings.js:19 +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 msgid "Reset" -msgstr "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 "Reset kaart" +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 "Reset velden" +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 "Reset LDAP-wachtwoord" +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 "Reset 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 "Reset Password" +msgstr "" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Reset Password Key" -msgstr "Reset Password Key" +msgstr "" -#. Label of a Duration field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Link Expiry Duration" msgstr "" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Template" msgstr "" -#: core/page/permission_manager/permission_manager.js:109 +#: frappe/core/page/permission_manager/permission_manager.js:116 msgid "Reset Permissions for {0}?" -msgstr "Reset Machtigingen voor {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 "Teruggezet naar de standaardinstellingen" +msgstr "" -#: templates/emails/password_reset.html:3 +#: frappe/templates/emails/password_reset.html:3 msgid "Reset your password" -msgstr "Stel je wachtwoord opnieuw in" +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 "antwoord" +msgstr "" -#. Label of a Section Break field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Response" -msgstr "antwoord" - -#. 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 "antwoord" - -#. 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 "response Type" +msgstr "" -#: public/js/frappe/ui/notifications/notifications.js:400 +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 msgid "Rest of the day" msgstr "" -#: core/doctype/deleted_document/deleted_document.js:11 -#: core/doctype/deleted_document/deleted_document_list.js:48 +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" -msgstr "Herstellen" +msgstr "" -#: core/page/permission_manager/permission_manager.js:492 +#: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" -msgstr "Restore Original Machtigingen" +msgstr "" -#: website/doctype/portal_settings/portal_settings.js:20 +#: frappe/website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" -msgstr "Herstellen naar standaardinstellingen?" +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 "Hersteld" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:73 +#: frappe/core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" -msgstr "Herstel verwijderd document" +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 "Beperken 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 "Beperken tot domein" +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 "Beperken tot domein" - -#. Label of a Link field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Restrict To Domain" -msgstr "Beperken tot domein" - -#. Label of a Link field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Restrict To Domain" -msgstr "Beperken tot domein" - -#. 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 "Beperkt tot Domein" - -#. Label of a Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Restrict to Domain" -msgstr "Beperkt tot Domein" +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 "Beperk de gebruiker van dit IP-adres alleen. Meerdere IP-adressen kunnen worden toegevoegd door het scheiden van met komma's. Ook aanvaardt gedeeltelijke IP-adres, zoals (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 "beperkingen" +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 "doorgaan met het verzenden" +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 "opnieuw proberen" +msgstr "" -#. Label of a Int field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Retry" -msgstr "opnieuw proberen" - -#: 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 "Ga terug naar het scherm Verificatie en voer de code in die door uw verificatieapparaat wordt weergegeven" +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 Icon Kleur" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.js:10 -#: social/doctype/energy_point_log/energy_point_log.js:15 -msgid "Revert" -msgstr "terugkeren" - -#. 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 "terugkeren" - -#. 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 "Terugkeren van" - -#. 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 "teruggekeerd" - -#: 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 "Lengte terugzetten naar {0} voor '{1}' in '{2}'. Als u de lengte instelt op {3}, worden de gegevens afgekapt." +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 "Beoordeling" - -#. Name of a DocType -#: social/doctype/review_level/review_level.json -msgid "Review Level" -msgstr "Review niveau" - -#. 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 "Beoordeling niveaus" - -#. Label of a Int field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Review Points" -msgstr "Review punten" - -#. 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 "Intrekken" +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 "herroepen" - -#. 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 "Rechts" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Right" -msgstr "Rechts" - #. 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 "Rechts" +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 "Rechts" +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 "Rol" - -#. Label of a Link field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Role" -msgstr "Rol" - -#. Label of a Table field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Role" -msgstr "Rol" - -#. Label of a Link field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Role" -msgstr "Rol" - -#. Label of a Link field in DocType 'Has Role' -#: core/doctype/has_role/has_role.json -msgctxt "Has Role" -msgid "Role" -msgstr "Rol" - -#. Label of a Link field in DocType 'Onboarding Permission' -#: desk/doctype/onboarding_permission/onboarding_permission.json -msgctxt "Onboarding Permission" -msgid "Role" -msgstr "Rol" - -#. 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 "Rol" - -#. Label of a Link field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Role" -msgstr "Rol" - +#. 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 "Rol" +msgstr "" -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Role" -msgstr "Rol" - -#. Label of a Link field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" -msgid "Role" -msgstr "Rol" - -#. 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 "Rol" - -#: 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 "Rolnaam" - -#. Label of a Data field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" -msgid "Role Name" -msgstr "Rolnaam" +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 "Rol Toestemming voor pagina en het verslag" +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 "Rol Toestemming voor pagina en het verslag" - -#: public/js/frappe/roles_editor.js:100 -msgid "Role Permissions" -msgstr "Rol Machtigingen" - -#. 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 "Rol Machtigingen" - -#. 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 "Rol Machtigingen Manager" +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 "Rol Machtigingen Manager" +msgstr "" #. Name of a DocType -#: core/doctype/role_profile/role_profile.json -msgid "Role Profile" -msgstr "Rolprofiel" - +#. 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 "Rolprofiel" +msgstr "" -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Role Profile" -msgstr "Rolprofiel" +#. 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 "Rol en Niveau" +msgstr "" -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Role and Level" -msgstr "Rol en Niveau" - -#: 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 "Rollen" +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 "Rollen" - -#. Label of a Table field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Roles" -msgstr "Rollen" - -#. Label of a Table field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Roles" -msgstr "Rollen" - -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Roles" -msgstr "Rollen" - -#. 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 "Rollen" - -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles" -msgstr "Rollen" - -#. 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 "Rollen" - -#. 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 "Toegewezen Rollen" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles Assigned" -msgstr "Toegewezen Rollen" - -#. 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 "Rollen HTML" +msgstr "" -#. Label of a HTML field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles HTML" -msgstr "Rollen 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 "Rollen 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} kan niet worden verwijderd" +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 "Rond 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 "Route" - -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Route" -msgstr "Route" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Route" -msgstr "Route" - +#. 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 "Route" - -#. Label of a Data field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Route" -msgstr "Route" - -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Route" -msgstr "Route" - -#. Label of a Data field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" -msgid "Route" -msgstr "Route" - #. 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 "Route" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Route" -msgstr "Route" - -#. 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 "Route" - -#. Label of a Data field in DocType 'Route History' -#: desk/doctype/route_history/route_history.json -msgctxt "Route History" -msgid "Route" -msgstr "Route" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Route" -msgstr "Route" - -#. Label of a Data field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Route" -msgstr "Route" - -#. 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 "Route" +msgstr "" #. Name of a DocType -#: desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/route_history/route_history.json msgid "Route History" -msgstr "Route geschiedenis" +msgstr "" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Route History" -msgstr "Route geschiedenis" - -#. 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 "Route omleidingen" +msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Route: Example \"/desk\"" -msgstr "Route: Voorbeeld "/ 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:855 frappe/model/document.py:778 msgid "Row" -msgstr "Rij" +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 "Rij # {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 "Rij-index" +#. 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 "Rij naam" +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 "Rij {0}: niet toegestaan verplicht voor standaardvelden uitschakelen" +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 "Rij {0}: Niet toegestaan om te schakelen Sta op Submit voor standaard velden" +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 "rijen Toegevoegd" +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 "rijen verwijderd" +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 "Regel" +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 "Regel" - -#. 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 "Regelvoorwaarden" +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 "Regelnaam" - -#: 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 "Regels met betrekking tot de overgang van de staat in de workflow." +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 "Regels voor de manier waarop stadia overgaan, zoals 'volgend stadium' en welke rol dit stadium mag veranderen, etc." +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 "Regels met een hoger prioriteitsnummer worden eerst toegepast." +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 "Taken alleen dagelijks uitvoeren indien inactief gedurende (dagen)" +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 "Run geplande taken alleen als aangevinkt." +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 "S3 Back-upinstellingen" - #. 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 "S3 Back-upinstellingen" +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 Back-up voltooid!" +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 "S3-emmergegevens" +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 Parameter" +msgstr "" #. Name of a DocType -#: core/doctype/sms_settings/sms_settings.json -msgid "SMS Settings" -msgstr "SMS-instellingen" - #. 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 "SMS-instellingen" +msgstr "" -#: core/doctype/sms_settings/sms_settings.py:110 -msgid "SMS sent to following numbers: {0}" -msgstr "SMS verzonden naar volgende nummers: {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 "SMTP-instellingen voor uitgaande e-mails" - #. 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 "SQL Voorwaarden. Voorbeeld: 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 "SSL / TLS-modus" +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 "Verkoopsmanager" +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 "Sales Gebruiker" +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 "Verkoopsteam" +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 "Aanhef" +msgstr "" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Salutation" -msgstr "Aanhef" - -#. Label of a Data field in DocType 'Salutation' -#: contacts/doctype/salutation/salutation.json -msgctxt "Salutation" -msgid "Salutation" -msgstr "Aanhef" - -#: integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" -msgstr "Hetzelfde veld is meer dan één keer ingevoerd" +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 "Monster" +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 "Zaterdag" - -#. 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 "Zaterdag" - #. 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 "Zaterdag" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Saturday" -msgstr "Zaterdag" - +#. 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 "Zaterdag" - -#: 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 "bewaren" +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 "bewaren" +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 "Hoe dan ook opslaan" +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 "Opslaan als" +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 "Rapport opslaan" +msgstr "" -#: public/js/frappe/views/kanban/kanban_view.js:94 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 msgid "Save filters" -msgstr "Filters opslaan" +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 "Opgeslagen" +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 "Opslaan" +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 "Opslaan" +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 "Besparing..." +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 "Scan de QR-code en voer de weergegeven code in." +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 "Geplande" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Scheduled" -msgstr "Geplande" - #. 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 "Geplande" +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 "Geplande taak" +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 "Gepland takenlogboek" - -#. 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 "Gepland takenlogboek" +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 "Type geplande taak" +msgstr "" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Scheduled Job Type" -msgid "Scheduled Job Type" -msgstr "Type geplande taak" - -#. Linked DocType in Server Script's connections -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Scheduled Job Type" -msgstr "Type geplande taak" - -#. 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 "Gepland voor sturen" +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 "Geplande uitvoering voor script {0} is bijgewerkt" +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 "Gepland om te verzenden" +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 "Scheduler-evenement" +msgstr "" -#: core/doctype/data_import/data_import.py:97 +#: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler Inactive" -msgstr "Planner Inactief" +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 "Planner is inactief. Kan gegevens niet importeren." +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 "Scriptbeheer" +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 Rapport" +msgstr "" -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Script Type" -msgstr "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json msgid "Scripting" msgstr "" -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Scripting" -msgstr "" - -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Scripting / Style" msgstr "" -#: public/js/frappe/form/link_selector.js:46 -#: public/js/frappe/ui/toolbar/search.js:49 -#: public/js/frappe/ui/toolbar/search.js:68 -#: templates/includes/search_template.html:26 www/search.py:19 -msgid "Search" -msgstr "Zoek" +#. 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 "Zoek Velden" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Search Fields" -msgstr "Zoek Velden" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:186 -msgid "Search Help" -msgstr "Zoek hulp" - -#. 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 "Zoek prioriteiten" - -#: 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 "Search veld {0} is niet geldig" +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 "Zoeken naar iets" +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 "Zoek in een documenttype" +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 "zoekresultaten voor" +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 "Zoeken..." +msgstr "" -#: public/js/frappe/ui/toolbar/search.js:210 +#: frappe/public/js/frappe/ui/toolbar/search.js:210 msgid "Searching ..." -msgstr "Zoeken ..." +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 "Sectie" - -#. 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 "Sectie-einde" - -#. 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 "Sectie-einde" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Section Break" -msgstr "Sectie-einde" - +#. 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 "Sectie-einde" - #. 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 "Sectie-einde" +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 "sectie Koppen" +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 "Beveiligingsinstellingen" +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 "Bekijk alle eerdere rapporten." +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 "Zie op de 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 "Zie het document op {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 "Seen" +msgstr "" -#. Label of a Check field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Seen" -msgstr "Seen" - -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Seen" -msgstr "Seen" - -#. 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 "Seen" - -#. Label of a Check field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Seen" -msgstr "Seen" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Seen" -msgstr "Seen" - -#. 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 "Gezien door" +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 "Gezien door Table" - -#: printing/page/print/print.js:592 -msgid "Select" -msgstr "Kiezen" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Select" -msgstr "Kiezen" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Select" -msgstr "Kiezen" - -#. 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 "Kiezen" +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 "Kiezen" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Select" -msgstr "Kiezen" - +#. 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 "Kiezen" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Select" -msgstr "Kiezen" - +#. 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 "Kiezen" - #. 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 "Kiezen" +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 "Selecteer Bijlagen" +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 "Selecteer onderliggende tabel" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:377 msgid "Select Column" -msgstr "Selecteer Kolom" +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 "Kolommen selecteren" +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 "Selecteer Dashboard" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Select Dashboard" -msgstr "Selecteer 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 "Selecteer datumbereik" - -#: public/js/frappe/doctype/index.js:170 -msgid "Select DocType" -msgstr "Selecteer DocType" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Select DocType" -msgstr "Selecteer DocType" - -#. Label of a Link field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" -msgid "Select Doctype" -msgstr "Selecteer 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 "Selecteer Document Type" +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 "Selecteer Document Type of Rol om te beginnen." +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 "Selecteer veld" +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 "Selecteer Velden" +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 "Selecteer Velden om in te voegen" +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 "Selecteer Velden die moeten worden bijgewerkt" +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 "Selecteer filters" +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 "Selecteer Google Agenda met welk evenement moet worden gesynchroniseerd." +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 "Selecteer Google Contacten waarnaar contact moet worden gesynchroniseerd." +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 "Selecteer taal" +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 "Selecteer Verplicht" +msgstr "" -#: custom/doctype/customize_form/customize_form.js:235 +#: frappe/custom/doctype/customize_form/customize_form.js:280 msgid "Select Module" -msgstr "Select 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 "Selecteer Print Formaat" +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 "Selecteer Print Format naar Bewerken" +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 "Tabel selecteren Columns voor {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 "Selecteer Transactie" +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 "Selecteer eerst een merk Image." +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 "Selecteer een DocType om een nieuwe indeling te maken" - -#: 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 "Selecteer eerst een groep knooppunt." +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 "Selecteer een geldig afzenderveld voor het maken van documenten vanuit 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 "Selecteer een geldig onderwerpveld voor het maken van documenten vanuit e-mail" +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 "Voor het beste resultaat; selecteer een afbeelding van ca. 150px breedte met een transparante achtergrond" +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 "Selecteer tenminste 1 record voor het afdrukken" +msgstr "" -#: core/doctype/success_action/success_action.js:18 +#: frappe/core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" -msgstr "Selecteer minimaal 2 acties" +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 "Selecteer lijstitem" +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 "Selecteer meerdere lijstitems" +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 "Selecteer of sleep over tijdsloten om een nieuwe gebeurtenis te maken." +msgstr "" -#: public/js/frappe/list/bulk_operations.js:195 +#: frappe/public/js/frappe/list/bulk_operations.js:239 msgid "Select records for assignment" -msgstr "Selecteer records voor opdracht" +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 "Selecteer het label, waarachter u nieuwe veld wilt invoegen." +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 "Selecteer {0}" +msgstr "" -#: model/workflow.py:121 +#: frappe/model/workflow.py:117 msgid "Self approval is not allowed" -msgstr "Eigen goedkeuring is niet toegestaan" +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 "Verstuur" +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 "Stuur Na" +msgstr "" -#. Label of a Datetime field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Send After" -msgstr "Stuur Na" - -#. 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 "Stuur Alert Op" +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 "Stuur e-mail alert" +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 "Stuur E-mail Afdrukken Bijlagen als PDF (aanbevolen)" +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 "Stuur een e-mail voor een succesvolle back-up" +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 "Stuur een e-mail voor een succesvolle back-up" - -#. 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 "Stuur een e-mail voor een succesvolle back-up" +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 "Stuur me een kopie van uitgaande e-mails" +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 "Stuur Kennisgeving aan" +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 "Stuur bericht naar" +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 "Stuur meldingen voor documenten die door mij zijn gevolgd" +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 "Stuur meldingen voor e-mailthreads" +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 "Verzend Notificaties naar" +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 "Verzend Notificaties naar" - -#: 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 "Nu verzenden" +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 "Verzend Afdruk als PDF" +msgstr "" -#: public/js/frappe/views/communication.js:134 +#: frappe/public/js/frappe/views/communication.js:147 msgid "Send Read Receipt" -msgstr "Leesbevestiging verzenden" +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 "Systeemmelding verzenden" +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 "Verzenden naar alle toegewezen personen" +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 "Stuur afmeldlink" +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 "Stuur Welkom 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 "Stuur Alert als datum overeenkomt met waarde in dit veld." +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 "Stuur Alert als de waarde in dit veld wijzigt" +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 "Stuur een e-mail herinnering in de ochtend" +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 "Stuur dagen voor of na de peildatum" +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 "Stuur uw vragen naar dit e-mailadres" +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 "Stuur mij een kopie" +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 "Stuur alleen als er geen gegevens" +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 "Stuur unsubscribe bericht e-mail" +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 "Afzender" +msgstr "" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Sender" -msgstr "Afzender" - -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sender" -msgstr "Afzender" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Sender" -msgstr "Afzender" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Sender" -msgstr "Afzender" - -#. Label of a Data field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Sender" -msgstr "Afzender" - -#. 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 "E-mail afzender" +msgstr "" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Sender Email" -msgstr "E-mail afzender" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Email Field" msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Sender Email Field" -msgstr "" - -#: core/doctype/doctype/doctype.py:1888 +#: frappe/core/doctype/doctype/doctype.py:1945 msgid "Sender Field should have Email in options" -msgstr "Sender Field moet E-mail in de opties hebben" +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 "Verzenden" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Sending" -msgstr "Verzenden" - #. 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 "Verzenden" +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 "verzonden" - #. 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 "verzonden" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Sent" -msgstr "verzonden" - #. 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 "verzonden" +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 "Verzonden Leesbevestiging" +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 "Verzonden of ontvangen" +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 "Verzonden / ontvangen e-mail" +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 "Scheidingsteken" +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 "Reeks voor deze transactie" +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 "Reeks {0} al gebruikt 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 "Serveractie" +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 "Serverfout" +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 "Server IP" +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 "Server Script" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Server Script" -msgstr "Server Script" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Server Script" -msgstr "Server Script" - -#. 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 "Server Script" - #. 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 "Server Script" +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 "Service" - -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Service" -msgstr "Service" +msgstr "" #. Name of a DocType -#: core/doctype/session_default/session_default.json +#: frappe/core/doctype/session_default/session_default.json msgid "Session Default" -msgstr "Sessie Standaard" +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 "Standaard sessie-instellingen" +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 "Standaardwaarden sessie" +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 "Standaardwaarden sessie" - -#: public/js/frappe/ui/toolbar/toolbar.js:281 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 msgid "Session Defaults Saved" -msgstr "Standaardwaarden sessie opgeslagen" +msgstr "" -#: app.py:345 +#: frappe/app.py:360 msgid "Session Expired" -msgstr "Sessie verlopen" +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 "Sessie Verval moet in dit formaat {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 "Instellen" +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 "Instellen Banner uit Afbeelding" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:201 msgid "Set Chart" -msgstr "Grafiek instellen" +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 "Standaardopties instellen voor alle grafieken op dit dashboard (bijv. "Kleuren": ["# 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 "Stel dynamische filters in" +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 "Stel filters in" +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 "Filters instellen voor {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 Nieuw wachtwoord" +msgstr "" -#: desk/page/backups/backups.js:8 +#: frappe/desk/page/backups/backups.js:8 msgid "Set Number of Backups" -msgstr "Set aantal back-ups" +msgstr "" -#: www/update-password.html:9 +#: frappe/www/update-password.html:32 msgid "Set Password" -msgstr "Wachtwoord instellen" +msgstr "" -#: custom/doctype/customize_form/customize_form.js:112 +#: frappe/custom/doctype/customize_form/customize_form.js:112 msgid "Set Permissions" -msgstr "Rechten instellen" +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 "Eigenschap instellen na alarmering" +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 "Stel Hoeveelheid" +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 "Stel rol voor de" +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 "Stel Gebruikersmachtigingen in" +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 "Geef waarde" +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 "Instellen als standaard" +msgstr "" -#: website/doctype/website_theme/website_theme.js:33 +#: frappe/website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" -msgstr "Instellen als standaardthema" - -#. 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 "Stel niet-standaard precisie voor een Float of Valuta veld" - -#. 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 "Stel niet-standaard precisie voor een Float of Valuta veld" +#: 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 "Stel niet-standaard precisie voor een Float of Valuta veld" - +#. 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 "Stel niet-standaard precisie voor een Float of Valuta veld" +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 "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" "
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" "
  3. All values are given class value
  4. \n" "
  5. All Section Breaks are given class section-break
  6. \n" "
  7. All Column Breaks are given class column-break
  8. \n" -"
\n" -"\n" -"

Examples

\n" -"\n" -"

1. Left align integers

\n" -"\n" -"
[data-fieldtype=\"Int\"] .value { text-align: left; }
\n" -"\n" -"

1. Add border to sections except the last section

\n" -"\n" +"\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" -"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" -"
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" #. 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" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" -#. Label of 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 007/108] 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 008/108] 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 009/108] 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 010/108] 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 011/108] 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 012/108] 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 013/108] 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 014/108] 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 015/108] 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 016/108] 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 017/108] 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 018/108] 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 019/108] 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 020/108] 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 021/108] 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 022/108] 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 023/108] 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 024/108] 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 025/108] 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 026/108] 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 027/108] 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 028/108] 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 029/108] 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 030/108] 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 031/108] 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 032/108] 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 033/108] 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 034/108] 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 035/108] 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 036/108] 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 037/108] 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 038/108] 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 039/108] 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 040/108] 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 041/108] 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 042/108] 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 043/108] 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 044/108] 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 045/108] 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 046/108] 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 047/108] 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 048/108] 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 049/108] 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 050/108] 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 051/108] 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 052/108] 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 053/108] 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 054/108] 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 055/108] 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 056/108] 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 057/108] 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 058/108] 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 059/108] 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 060/108] 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 f833e4e21b78979feecfd0f4f3ecb80f086c9804 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Wed, 18 Jun 2025 10:57:46 +0000 Subject: [PATCH 061/108] fix: improve flow to rollback db transaction when processing requests (#32980) * fix: improve flow to rollback db transaction when processing requests * fix: rollback, log request and process response for HTTPException --- frappe/app.py | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/frappe/app.py b/frappe/app.py index 69c0e76847..d8d259e066 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -92,8 +92,6 @@ def application(request: Request): response = None try: - rollback = True - init_request(request) validate_auth() @@ -127,23 +125,19 @@ def application(request: Request): else: raise NotFound - except HTTPException as e: - return e - except Exception as e: - response = handle_exception(e) + response = e.get_response(request.environ) if isinstance(e, HTTPException) else handle_exception(e) + if db := getattr(frappe.local, "db", None): + db.rollback() else: - rollback = sync_database(rollback) + sync_database() finally: # Important note: # this function *must* always return a response, hence any exception thrown outside of # try..catch block like this finally block needs to be handled appropriately. - if rollback and request.method in UNSAFE_HTTP_METHODS and frappe.db: - frappe.db.rollback() - try: run_after_request_hooks(request, response) except Exception: @@ -396,21 +390,21 @@ def handle_exception(e): return response -def sync_database(rollback: bool) -> bool: +def sync_database(): + db = getattr(frappe.local, "db", None) + if not db: + # db isn't initialized, can't commit or rollback + return + # if HTTP method would change server state, commit if necessary - if frappe.db and (frappe.local.flags.commit or frappe.local.request.method in UNSAFE_HTTP_METHODS): - frappe.db.commit() - rollback = False - elif frappe.db: - frappe.db.rollback() - rollback = False + if frappe.local.request.method in UNSAFE_HTTP_METHODS or frappe.local.flags.commit: + db.commit() + else: + db.rollback() # update session if session := getattr(frappe.local, "session_obj", None): - if session.update(): - rollback = False - - return rollback + session.update() # Always initialize sentry SDK if the DSN is sent From c2dbae3ece66f6203b042d7a841bfdc305e4f099 Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Wed, 18 Jun 2025 14:51:16 +0200 Subject: [PATCH 062/108] fix(DocType): offer calendar view as default (#32996) --- frappe/public/js/frappe/model/model.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/model/model.js b/frappe/public/js/frappe/model/model.js index d83eabc3d0..d5d78077cf 100644 --- a/frappe/public/js/frappe/model/model.js +++ b/frappe/public/js/frappe/model/model.js @@ -858,7 +858,7 @@ $.extend(frappe.model, { let meta = frappe.get_meta(doctype); let default_views = ["List", "Report", "Dashboard", "Kanban"]; - if (meta.is_calendar_and_gantt && frappe.views.calendar[doctype]) { + if (meta.is_calendar_and_gantt) { let views = ["Calendar", "Gantt"]; default_views.push(...views); } From ee864dac12340ea5ca67fe92aaef27bec3183b78 Mon Sep 17 00:00:00 2001 From: ruthra kumar Date: Wed, 18 Jun 2025 09:46:14 +0530 Subject: [PATCH 063/108] refactor: introduce lightmode in parallel test runner --- frappe/commands/testing.py | 3 +++ frappe/parallel_test_runner.py | 15 ++++++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/frappe/commands/testing.py b/frappe/commands/testing.py index 2be1d12153..07b8700c91 100644 --- a/frappe/commands/testing.py +++ b/frappe/commands/testing.py @@ -370,6 +370,7 @@ def run_tests( ) @click.option("--use-orchestrator", is_flag=True, help="Use orchestrator to run parallel tests") @click.option("--dry-run", is_flag=True, default=False, help="Dont actually run tests") +@click.option("--lightmode", is_flag=True, default=False, help="Skips all before test setup") @pass_context def run_parallel_tests( context: CliCtxObj, @@ -379,6 +380,7 @@ def run_parallel_tests( with_coverage=False, use_orchestrator=False, dry_run=False, + lightmode=False, ): from traceback_with_variables import activate_by_import @@ -399,6 +401,7 @@ def run_parallel_tests( build_number=build_number, total_builds=total_builds, dry_run=dry_run, + lightmode=lightmode, ) mode = "Orchestrator" if use_orchestrator else "Parallel" banner = f""" diff --git a/frappe/parallel_test_runner.py b/frappe/parallel_test_runner.py index c558c76fee..7f57e54618 100644 --- a/frappe/parallel_test_runner.py +++ b/frappe/parallel_test_runner.py @@ -29,12 +29,13 @@ TEST_WEIGHT_OVERRIDES = { class ParallelTestRunner: - def __init__(self, app, site, build_number=1, total_builds=1, dry_run=False): + def __init__(self, app, site, build_number=1, total_builds=1, dry_run=False, lightmode=False): self.app = app self.site = site self.build_number = frappe.utils.cint(build_number) or 1 self.total_builds = frappe.utils.cint(total_builds) self.dry_run = dry_run + self.lightmode = lightmode self.test_file_list = [] self.total_test_weight = 0 self.test_result = None @@ -56,8 +57,9 @@ class ParallelTestRunner: toggle_test_mode(True) frappe.clear_cache() frappe.utils.scheduler.disable_scheduler() - _decorate_all_methods_and_functions_with_type_checker() - self.before_test_setup() + if not self.lightmode: + _decorate_all_methods_and_functions_with_type_checker() + self.before_test_setup() def before_test_setup(self): start_time = time.monotonic() @@ -103,9 +105,12 @@ class ParallelTestRunner: frappe.set_user("Administrator") path, filename = file_info module = self.get_module(path, filename) - from frappe.deprecation_dumpster import compat_preload_test_records_upfront - compat_preload_test_records_upfront([(module, path, filename)]) + if not self.lightmode: + from frappe.deprecation_dumpster import compat_preload_test_records_upfront + + compat_preload_test_records_upfront([(module, path, filename)]) + test_suite = unittest.TestSuite() module_test_cases = unittest.TestLoader().loadTestsFromModule(module) test_suite.addTest(module_test_cases) From b57eb60486ffd3827bf28d0fdfb090be45b0dfd6 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 19 Jun 2025 12:37:39 +0530 Subject: [PATCH 064/108] perf: chain db transactions (#33004) * perf: chain transactions Frequently used rollback/commits can be modified to chain previous transaction. This reduces one query to DB in most requests. * perf: chain transactions in requests --- frappe/app.py | 6 +++--- frappe/database/database.py | 18 ++++++++++++------ frappe/utils/background_jobs.py | 8 ++++---- 3 files changed, 19 insertions(+), 13 deletions(-) diff --git a/frappe/app.py b/frappe/app.py index d8d259e066..04e06171ef 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -128,7 +128,7 @@ def application(request: Request): except Exception as e: response = e.get_response(request.environ) if isinstance(e, HTTPException) else handle_exception(e) if db := getattr(frappe.local, "db", None): - db.rollback() + db.rollback(chain=True) else: sync_database() @@ -398,9 +398,9 @@ def sync_database(): # if HTTP method would change server state, commit if necessary if frappe.local.request.method in UNSAFE_HTTP_METHODS or frappe.local.flags.commit: - db.commit() + db.commit(chain=True) else: - db.rollback() + db.rollback(chain=True) # update session if session := getattr(frappe.local, "session_obj", None): diff --git a/frappe/database/database.py b/frappe/database/database.py index 1501edef77..1f809c8d14 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -1147,7 +1147,7 @@ class Database: mode = "READ ONLY" if read_only else "" self.sql(f"START TRANSACTION {mode}") - def commit(self): + def commit(self, *, chain=False): """Commit current transaction. Calls SQL `COMMIT`.""" if self._disable_transaction_control: warnings.warn(message=TRANSACTION_DISABLED_MSG, stacklevel=2) @@ -1158,12 +1158,15 @@ class Database: self.before_commit.run() - self.sql("commit") - self.begin() # explicitly start a new transaction + if chain: + self.sql("commit and chain") + else: + self.sql("commit") + self.begin() self.after_commit.run() - def rollback(self, *, save_point=None): + def rollback(self, *, save_point=None, chain=False): """`ROLLBACK` current transaction. Optionally rollback to a known save_point.""" if save_point: self.sql(f"rollback to savepoint {save_point}") @@ -1173,8 +1176,11 @@ class Database: self.before_rollback.run() - self.sql("rollback") - self.begin() + if chain: + self.sql("rollback and chain") + else: + self.sql("rollback") + self.begin() self.after_rollback.run() else: diff --git a/frappe/utils/background_jobs.py b/frappe/utils/background_jobs.py index 5926c5c656..39fff78bde 100644 --- a/frappe/utils/background_jobs.py +++ b/frappe/utils/background_jobs.py @@ -272,7 +272,7 @@ def execute_job(site, method, event, job_name, kwargs, user=None, is_async=True, retval = method(**kwargs) except (frappe.db.InternalError, frappe.RetryBackgroundJobError) as e: - frappe.db.rollback() + frappe.db.rollback(chain=True) if retry < 5 and ( isinstance(e, frappe.RetryBackgroundJobError) @@ -293,15 +293,15 @@ def execute_job(site, method, event, job_name, kwargs, user=None, is_async=True, raise except Exception as e: - frappe.db.rollback() + frappe.db.rollback(chain=True) frappe.log_error(title=method_name) frappe.monitor.add_data_to_monitor(exception=e.__class__.__name__) - frappe.db.commit() + frappe.db.commit(chain=True) print(frappe.get_traceback()) raise else: - frappe.db.commit() + frappe.db.commit(chain=True) return retval finally: From 4f6e19eec4898c9e755274ac16d8433f214f8762 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Thu, 19 Jun 2025 11:32:25 +0000 Subject: [PATCH 065/108] perf: use `chain` flag (#33007) --- frappe/sessions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/sessions.py b/frappe/sessions.py index f8eb48e231..50ae48640c 100644 --- a/frappe/sessions.py +++ b/frappe/sessions.py @@ -29,8 +29,8 @@ from frappe.utils.data import add_to_date @frappe.whitelist() def clear(): + # updating session causes a commit, explicit commit not needed frappe.local.session_obj.update(force=True) - frappe.local.db.commit() clear_user_cache(frappe.session.user) frappe.response["message"] = _("Cache Cleared") @@ -96,7 +96,7 @@ def delete_session(sid=None, user=None, reason="Session Expired"): logout_feed(user, reason) frappe.db.delete("Sessions", {"sid": sid}) - frappe.db.commit() + frappe.db.commit(chain=True) frappe.cache.hdel("session", sid) @@ -433,7 +433,7 @@ class Session: frappe.db.set_value("User", frappe.session.user, "last_active", now, update_modified=False) - frappe.db.commit() + frappe.db.commit(chain=True) updated_in_db = True frappe.cache.hset("session", self.sid, self.data) From 94109de17dfc6dc7c56e0fc4f4c87b29210a4bf5 Mon Sep 17 00:00:00 2001 From: mahsem <137205921+mahsem@users.noreply.github.com> Date: Thu, 19 Jun 2025 13:33:45 +0200 Subject: [PATCH 066/108] fix: spelling_serbian_datepick (#32619) --- frappe/public/js/frappe/form/controls/datepicker_i18n.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/datepicker_i18n.js b/frappe/public/js/frappe/form/controls/datepicker_i18n.js index 780ea4ff58..6e185ada79 100644 --- a/frappe/public/js/frappe/form/controls/datepicker_i18n.js +++ b/frappe/public/js/frappe/form/controls/datepicker_i18n.js @@ -394,8 +394,8 @@ import "air-datepicker/dist/js/i18n/datepicker.zh.js"; "Mart", "April", "Maj", - "Juni", - "Juli", + "Jun", + "Jul", "Avgust", "Septembar", "Oktobar", @@ -417,7 +417,7 @@ import "air-datepicker/dist/js/i18n/datepicker.zh.js"; "Dec", ], today: "Danas", - clear: "Resetiraj", + clear: "Resetuj", dateFormat: "dd/mm/yyyy", timeFormat: "hh:ii", firstDay: 1, From 4fbdaf3a9b424f22fe14e7f94a4c6edd0dbf140a Mon Sep 17 00:00:00 2001 From: RitvikSardana <65544983+RitvikSardana@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:13:32 +0530 Subject: [PATCH 067/108] fix: add flag for initial email sync (#33006) * fix: add flag for initial email sync * fix: rever from_uid calc --- frappe/email/receive.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/email/receive.py b/frappe/email/receive.py index 1ddf69afcb..8ad99777d9 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -219,6 +219,9 @@ class EmailServer: uidnext = int(self.parse_imap_response("UIDNEXT", message[0]) or "1") frappe.db.set_value("Email Account", self.settings.email_account, "uidnext", uidnext) + if uid_validity is None: + frappe.flags.initial_sync = True + if not uid_validity or uid_validity != current_uid_validity: # uidvalidity changed & all email uids are reindexed by server frappe.db.set_value( From 02d72d2bbbb223812ee15e4070f3c08fc8122f79 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 19 Jun 2025 18:22:58 +0530 Subject: [PATCH 068/108] perf: faster gzip compression (#33014) Same as https://github.com/frappe/press/pull/2400 --- frappe/core/doctype/prepared_report/prepared_report.py | 2 +- frappe/deprecation_dumpster.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/prepared_report/prepared_report.py b/frappe/core/doctype/prepared_report/prepared_report.py index 2c8fdc2e05..8a0e48251f 100644 --- a/frappe/core/doctype/prepared_report/prepared_report.py +++ b/frappe/core/doctype/prepared_report/prepared_report.py @@ -242,7 +242,7 @@ def create_json_gz_file(data, dt, dn, report_name): frappe.scrub(report_name), frappe.utils.data.format_datetime(frappe.utils.now(), "Y-m-d-H-M") ) encoded_content = frappe.safe_encode(frappe.as_json(data, indent=None, separators=(",", ":"))) - compressed_content = gzip.compress(encoded_content) + compressed_content = gzip.compress(encoded_content, compresslevel=5) # Call save() file function to upload and attach the file _file = frappe.get_doc( diff --git a/frappe/deprecation_dumpster.py b/frappe/deprecation_dumpster.py index 91aac5526f..6f6e743620 100644 --- a/frappe/deprecation_dumpster.py +++ b/frappe/deprecation_dumpster.py @@ -306,7 +306,7 @@ def read_multi_pdf(output) -> bytes: @deprecated("frappe.gzip_compress", "unknown", "v17", "Use py3 methods directly (this was compat for py2).") -def gzip_compress(data, compresslevel=9): +def gzip_compress(data, compresslevel=5): """Compress data in one shot and return the compressed string. Optional argument is the compression level, in range of 0-9. """ From aedd5c29c07e57da82e0f0b4ea2a2de3e706297c Mon Sep 17 00:00:00 2001 From: Soham Kulkarni <77533095+sokumon@users.noreply.github.com> Date: Thu, 19 Jun 2025 20:57:27 +0530 Subject: [PATCH 069/108] fix: dont allow Website User to write to public events (#32966) --- frappe/desk/doctype/event/event.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/event/event.json b/frappe/desk/doctype/event/event.json index f184f52206..26321f4889 100644 --- a/frappe/desk/doctype/event/event.json +++ b/frappe/desk/doctype/event/event.json @@ -297,7 +297,7 @@ "icon": "fa fa-calendar", "idx": 1, "links": [], - "modified": "2025-04-10 13:08:32.540745", + "modified": "2025-06-17 15:31:01.945146", "modified_by": "Administrator", "module": "Desk", "name": "Event", @@ -310,7 +310,7 @@ "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "Desk User", "share": 1, "write": 1 }, @@ -326,6 +326,15 @@ "role": "System Manager", "share": 1, "write": 1 + }, + { + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "All", + "share": 1 } ], "read_only": 1, From a134b83eb8c16ec69f08d185710c1e82f104196c Mon Sep 17 00:00:00 2001 From: ruthra kumar Date: Fri, 20 Jun 2025 15:11:16 +0530 Subject: [PATCH 070/108] refactor: toggle test flag in lightmode --- frappe/commands/testing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/commands/testing.py b/frappe/commands/testing.py index 2be1d12153..33f9ed3efa 100644 --- a/frappe/commands/testing.py +++ b/frappe/commands/testing.py @@ -183,6 +183,7 @@ def main( def run_tests_in_light_mode(test_params): from frappe.testing.loader import FrappeTestLoader from frappe.testing.result import FrappeTestResult + from frappe.tests.utils import toggle_test_mode # init environment frappe.init(test_params.site) @@ -196,6 +197,7 @@ def run_tests_in_light_mode(test_params): frappe.utils.scheduler.disable_scheduler() frappe.clear_cache() + toggle_test_mode(True) suite = FrappeTestLoader().discover_tests(test_params) result = unittest.TextTestRunner(failfast=test_params.failfast, resultclass=FrappeTestResult).run(suite) if not result.wasSuccessful(): From 81ebf219c3923a515cd591aedd1df8f44b0d5b64 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Fri, 20 Jun 2025 12:07:46 +0000 Subject: [PATCH 071/108] build: use `--frozen-lockfile` flag to avoid lockfile generation / updation (#33026) --- esbuild/esbuild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esbuild/esbuild.js b/esbuild/esbuild.js index 1c4ffa0ada..f6218d58c7 100644 --- a/esbuild/esbuild.js +++ b/esbuild/esbuild.js @@ -523,7 +523,7 @@ function run_build_command_for_apps(apps) { log( `\nInstalling dependencies for ${chalk.bold(app)} (because node_modules not found)` ); - execSync("yarn install", { encoding: "utf8", stdio: "inherit" }); + execSync("yarn install --frozen-lockfile", { encoding: "utf8", stdio: "inherit" }); } log("\nRunning build command for", chalk.bold(app)); From 18ecd6603b430063f47ce1e50ddfd8f6b5ab95a7 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 20 Jun 2025 18:13:22 +0530 Subject: [PATCH 072/108] perf: ~2x faster scheduling (#33027) * perf: Use cached settings * perf: Cache parsed crons, ~2x faster scheduling --- .../core/doctype/scheduled_job_type/scheduled_job_type.py | 7 +++++-- frappe/utils/scheduler.py | 4 +--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py index 1dac746f18..75be455376 100644 --- a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py +++ b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py @@ -4,6 +4,7 @@ import hashlib import json from datetime import datetime, timedelta +from functools import lru_cache import click from croniter import CroniterBadCronError, croniter @@ -14,6 +15,8 @@ from frappe.model.document import Document from frappe.utils import get_datetime, now_datetime from frappe.utils.background_jobs import enqueue, is_job_enqueued +parse_cron = lru_cache(croniter) # Cache parsed cron-expressions + class ScheduledJobType(Document): # begin: auto-generated types @@ -132,10 +135,10 @@ class ScheduledJobType(Document): # A dynamic fallback like current time might miss the scheduler interval and job will never start. last_execution = get_datetime(self.last_execution or self.creation) - next_execution = croniter(self.cron_format, last_execution).get_next(datetime) + next_execution = parse_cron(self.cron_format).get_next(datetime, start_time=last_execution) if self.frequency in ("Hourly Maintenance", "Daily Maintenance"): next_execution += timedelta(minutes=maintenance_offset) - return croniter(self.cron_format, last_execution).get_next(datetime) + return parse_cron(self.cron_format).get_next(datetime, start_time=last_execution) def execute(self): if frappe.job: diff --git a/frappe/utils/scheduler.py b/frappe/utils/scheduler.py index e9dc7ccb23..12090d629c 100644 --- a/frappe/utils/scheduler.py +++ b/frappe/utils/scheduler.py @@ -170,9 +170,7 @@ def is_scheduler_disabled(verbose=True) -> bool: cprint(f"{frappe.local.site}: frappe.conf.disable_scheduler is SET") return True - scheduler_disabled = not frappe.utils.cint( - frappe.db.get_single_value("System Settings", "enable_scheduler") - ) + scheduler_disabled = not frappe.get_system_settings("enable_scheduler") if scheduler_disabled: if verbose: cprint(f"{frappe.local.site}: SystemSettings.enable_scheduler is UNSET") From f56c405e2625b155bccb69c7beefe699cd12ad99 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 20 Jun 2025 18:33:30 +0530 Subject: [PATCH 073/108] fix: Remove meta-bundle caching (#33029) - This has never worked - using `modified` isn't a good way to invalidate this cache because it doesn't change with customization --- frappe/desk/form/load.py | 5 +-- frappe/public/js/frappe/model/model.js | 45 +------------------------- 2 files changed, 2 insertions(+), 48 deletions(-) diff --git a/frappe/desk/form/load.py b/frappe/desk/form/load.py index 8163d1fc9d..af8f63f071 100644 --- a/frappe/desk/form/load.py +++ b/frappe/desk/form/load.py @@ -59,7 +59,7 @@ def getdoc(doctype, name): @frappe.whitelist() -def getdoctype(doctype, with_parent=False, cached_timestamp=None): +def getdoctype(doctype, with_parent=False): """load doctype""" docs = [] @@ -75,9 +75,6 @@ def getdoctype(doctype, with_parent=False, cached_timestamp=None): frappe.response["user_settings"] = get_user_settings(parent_dt or doctype) - if cached_timestamp and docs[0].modified == cached_timestamp: - return "use_cache" - frappe.response.docs.extend(docs) diff --git a/frappe/public/js/frappe/model/model.js b/frappe/public/js/frappe/model/model.js index d5d78077cf..b4c38649c4 100644 --- a/frappe/public/js/frappe/model/model.js +++ b/frappe/public/js/frappe/model/model.js @@ -212,55 +212,17 @@ $.extend(frappe.model, { return docfield[0]; }, - get_from_localstorage: function (doctype) { - if (localStorage["_doctype:" + doctype]) { - return JSON.parse(localStorage["_doctype:" + doctype]); - } - }, - - set_in_localstorage: function (doctype, docs) { - try { - localStorage["_doctype:" + doctype] = JSON.stringify(docs); - } catch (e) { - // if quota is exceeded, clear local storage and set item - console.warn("localStorage quota exceeded, clearing doctype cache"); - frappe.model.clear_local_storage(); - localStorage["_doctype:" + doctype] = JSON.stringify(docs); - } - }, - - clear_local_storage: function () { - for (var key in localStorage) { - if (key.startsWith("_doctype:")) { - localStorage.removeItem(key); - } - } - }, - with_doctype: function (doctype, callback, async) { if (locals.DocType[doctype]) { callback && callback(); return Promise.resolve(); } else { - let cached_timestamp = null; - let meta = null; - - let cached_docs = frappe.model.get_from_localstorage(doctype); - - if (cached_docs) { - meta = cached_docs.filter((doc) => doc.name === doctype)[0]; - if (meta) { - cached_timestamp = meta.modified; - } - } - return frappe.call({ method: "frappe.desk.form.load.getdoctype", type: "GET", args: { doctype: doctype, with_parent: 1, - cached_timestamp: cached_timestamp, }, async: async, callback: function (r) { @@ -268,12 +230,7 @@ $.extend(frappe.model, { frappe.msgprint(__("Unable to load: {0}", [__(doctype)])); throw "No doctype"; } - if (r.message == "use_cache") { - frappe.model.sync(meta); - } else { - frappe.model.set_in_localstorage(doctype, r.docs); - meta = r.docs[0]; - } + let meta = r.docs[0]; frappe.model.init_doctype(meta); if (r.user_settings) { From 2aa11de335d95660b0b7db9bb23babe2ac6967e3 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sat, 21 Jun 2025 12:42:26 +0530 Subject: [PATCH 074/108] fix: Capitalize duration label --- frappe/public/js/frappe/form/controls/duration.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/duration.js b/frappe/public/js/frappe/form/controls/duration.js index 2808200b69..4369f29343 100644 --- a/frappe/public/js/frappe/form/controls/duration.js +++ b/frappe/public/js/frappe/form/controls/duration.js @@ -20,19 +20,19 @@ 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); - this.build_numeric_input("hours", false); - this.build_numeric_input("minutes", false); - this.build_numeric_input("seconds", this.duration_options.hide_seconds); + 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.set_duration_picker_value(this.value); this.$picker.hide(); this.bind_events(); this.refresh(); } - build_numeric_input(label, hidden, max) { + build_numeric_input(name, hidden, max, label) { let $duration_input = $(` - + `); let $input = $(`
`).prepend($duration_input); @@ -41,7 +41,7 @@ frappe.ui.form.ControlDuration = class ControlDuration extends frappe.ui.form.Co $duration_input.attr("max", max); } - this.inputs[label] = $duration_input; + this.inputs[name] = $duration_input; let $control = $(`
From d4dcdcb5e269f1fed8119a81ae91f8d50419f78a Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sat, 21 Jun 2025 13:36:46 +0530 Subject: [PATCH 075/108] fix: make Text Editor field respect read-only state in child table --- frappe/public/js/frappe/form/controls/text_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/text_editor.js b/frappe/public/js/frappe/form/controls/text_editor.js index 582c6cace7..8edcb6d889 100644 --- a/frappe/public/js/frappe/form/controls/text_editor.js +++ b/frappe/public/js/frappe/form/controls/text_editor.js @@ -233,7 +233,7 @@ frappe.ui.form.ControlTextEditor = class ControlTextEditor extends frappe.ui.for }, }, theme: this.df.theme || "snow", - readOnly: this.disabled, + readOnly: this.disabled || this.df.read_only, bounds: this.quill_container[0], placeholder: this.df.placeholder || "", }; From 73cf975a9ae6da548765117ab9fe2afaae17167a Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sat, 21 Jun 2025 14:30:51 +0530 Subject: [PATCH 076/108] fix(email): resolve case mismatch in auto-linking from email address --- frappe/core/doctype/communication/communication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py index 4d8fd9bb08..7193638070 100644 --- a/frappe/core/doctype/communication/communication.py +++ b/frappe/core/doctype/communication/communication.py @@ -579,7 +579,7 @@ def parse_email(email_strings): if not document_parts or len(document_parts) != 2: continue - doctype = unquote_plus(document_parts[0]) + doctype = unquote_plus(frappe.unscrub(document_parts[0])) docname = unquote_plus(document_parts[1]) yield doctype, docname From 899f2bc592fcd30040f025d6d737bd92b6310bd4 Mon Sep 17 00:00:00 2001 From: Rahul Agrawal <12agrawalrahul@gmail.com> Date: Sat, 21 Jun 2025 15:12:36 +0530 Subject: [PATCH 077/108] fix: print
    numbering (#33036) * fix: print ol numbering * fix: update comment --------- Co-authored-by: Rahul Agrawal --- frappe/public/scss/print.bundle.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frappe/public/scss/print.bundle.scss b/frappe/public/scss/print.bundle.scss index 8e0d385431..829d0dc2b2 100644 --- a/frappe/public/scss/print.bundle.scss +++ b/frappe/public/scss/print.bundle.scss @@ -51,3 +51,7 @@ .filter-row div { display: inline-block; } +// prevent
      numbering conflicts +.ql-editor { + counter-reset: none; +} From 326c57af07efb65a82386e6f3633f2f349ef8f66 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 21 Jun 2025 20:07:10 +0530 Subject: [PATCH 078/108] chore: remove dead meta keys --- frappe/desk/form/meta.py | 33 -------------------------- frappe/public/js/frappe/model/model.js | 8 +------ 2 files changed, 1 insertion(+), 40 deletions(-) diff --git a/frappe/desk/form/meta.py b/frappe/desk/form/meta.py index b592edefd0..9707e7b053 100644 --- a/frappe/desk/form/meta.py +++ b/frappe/desk/form/meta.py @@ -16,9 +16,6 @@ ASSET_KEYS = ( "__css", "__list_js", "__calendar_js", - "__map_js", - "__linked_with", - "__messages", "__print_formats", "__workflow_docs", "__form_grid_templates", @@ -60,9 +57,6 @@ class FormMeta(Meta): if self.get("__assets_loaded", False): return - self.add_search_fields() - self.add_linked_document_type() - if not self.istable: self.add_code() self.add_custom_script() @@ -81,12 +75,6 @@ class FormMeta(Meta): for k in ASSET_KEYS: d[k] = self.get(k) - # d['fields'] = d.get('fields', []) - - for i, df in enumerate(d.get("fields") or []): - for k in ("search_fields", "is_custom_field", "linked_document_type"): - df[k] = self.get("fields")[i].get(k) - return d def add_code(self): @@ -186,19 +174,6 @@ class FormMeta(Meta): self.set("__custom_js", form_script) self.set("__custom_list_js", list_script) - def add_search_fields(self): - """add search fields found in the doctypes indicated by link fields' options""" - for df in self.get("fields", {"fieldtype": "Link", "options": ["!=", "[Select]"]}): - if df.options: - try: - search_fields = frappe.get_meta(df.options).search_fields - except frappe.DoesNotExistError: - self._show_missing_doctype_msg(df) - - if search_fields: - search_fields = search_fields.split(",") - df.search_fields = [sf.strip() for sf in search_fields] - def _show_missing_doctype_msg(self, df): # A link field is referring to non-existing doctype, this usually happens when # customizations are removed or some custom app is removed but hasn't cleaned @@ -217,14 +192,6 @@ class FormMeta(Meta): frappe.throw(msg, title=_("Missing DocType")) - def add_linked_document_type(self): - for df in self.get("fields", {"fieldtype": "Link"}): - if df.options: - try: - df.linked_document_type = frappe.get_meta(df.options).document_type - except frappe.DoesNotExistError: - self._show_missing_doctype_msg(df) - def load_print_formats(self): print_formats = frappe.db.sql( """select * FROM `tabPrint Format` diff --git a/frappe/public/js/frappe/model/model.js b/frappe/public/js/frappe/model/model.js index b4c38649c4..15af61b2c0 100644 --- a/frappe/public/js/frappe/model/model.js +++ b/frappe/public/js/frappe/model/model.js @@ -250,13 +250,7 @@ $.extend(frappe.model, { // meta has sugar, like __js and other properties that doc won't have frappe.meta.__doctype_meta = JSON.parse(JSON.stringify(meta)); } - for (const asset_key of [ - "__list_js", - "__custom_list_js", - "__calendar_js", - "__map_js", - "__tree_js", - ]) { + for (const asset_key of ["__list_js", "__custom_list_js", "__calendar_js", "__tree_js"]) { if (meta[asset_key]) { new Function(meta[asset_key])(); } From d9f1fc9aee726d06616a70c0b265d18680222bc2 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 21 Jun 2025 20:08:02 +0530 Subject: [PATCH 079/108] perf: use `__dict__` directly --- frappe/desk/form/meta.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/desk/form/meta.py b/frappe/desk/form/meta.py index 9707e7b053..3009fa6fe3 100644 --- a/frappe/desk/form/meta.py +++ b/frappe/desk/form/meta.py @@ -71,9 +71,10 @@ class FormMeta(Meta): def as_dict(self, no_nulls=False): d = super().as_dict(no_nulls=no_nulls) + __dict = self.__dict__ for k in ASSET_KEYS: - d[k] = self.get(k) + d[k] = __dict.get(k) return d From d9fc9f21f933ee4e4433a4df352df58e19a8064c Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 21 Jun 2025 20:12:39 +0530 Subject: [PATCH 080/108] perf: faster meta serialisation --- frappe/model/meta.py | 51 ++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/frappe/model/meta.py b/frappe/model/meta.py index 8ac2018bd2..8ffca6e632 100644 --- a/frappe/model/meta.py +++ b/frappe/model/meta.py @@ -45,6 +45,9 @@ from frappe.utils import cached_property, cast, cint, cstr from frappe.utils.caching import site_cache from frappe.utils.data import add_to_date, get_datetime +ListOrTuple = list | tuple +SerializableTypes = str | int | float | datetime + DEFAULT_FIELD_LABELS = { "name": _lt("ID"), "creation": _lt("Created On"), @@ -176,31 +179,7 @@ class Meta(Document): self.check_if_large_table() def as_dict(self, no_nulls=False): - def serialize(doc): - if isinstance(doc, dict): - return doc.copy() - out = {} - for key, value in doc.__dict__.items(): - if isinstance(value, list | tuple): - if not value or not isinstance(value[0], BaseDocument): - # non standard list object, skip - continue - - value = [serialize(d) for d in value] - - if (not no_nulls and value is None) or isinstance( - value, str | int | float | datetime | list | tuple - ): - out[key] = value - - # set empty lists for unset table fields - for fieldname in TABLE_DOCTYPES_FOR_DOCTYPE.keys(): - if out.get(fieldname) is None: - out[fieldname] = [] - - return out - - return serialize(self) + return _serialize(self, no_nulls=no_nulls) def get_link_fields(self): return self.get("fields", {"fieldtype": "Link", "options": ["!=", "[Select]"]}) @@ -977,6 +956,28 @@ def _update_field_order_based_on_insert_after(field_order, insert_after_map): field_order.extend(fields) +def _serialize(doc, no_nulls=False, *, is_child=False): + out = {} + for key, value in doc.__dict__.items(): + if not is_child and isinstance(value, ListOrTuple): + if not value or not isinstance(value[0], BaseDocument): + # non standard list object, skip + continue + + out[key] = [_serialize(d, no_nulls=no_nulls, is_child=True) for d in value] + + elif (not no_nulls and value is None) or isinstance(value, SerializableTypes): + out[key] = value + + # set empty lists for unset table fields + if not is_child: + for fieldname in TABLE_DOCTYPES_FOR_DOCTYPE: + if out.get(fieldname) is None: + out[fieldname] = [] + + return out + + if typing.TYPE_CHECKING: # This is DX hack to add all fields from DocType to meta for autocompletions. # Meta is technically doctype + special fields on meta. From 18dde69ab0c88dc08b85bcd2fdf5cf2b04cb5600 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 21 Jun 2025 20:51:57 +0530 Subject: [PATCH 081/108] perf: dont serialize caches --- frappe/model/meta.py | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/frappe/model/meta.py b/frappe/model/meta.py index 8ffca6e632..5d45b1ef2e 100644 --- a/frappe/model/meta.py +++ b/frappe/model/meta.py @@ -956,21 +956,34 @@ def _update_field_order_based_on_insert_after(field_order, insert_after_map): field_order.extend(fields) +CACHE_PROPERTIES = frozenset( + ( + "_fields", + "_table_fields", + "_table_doctypes", + *(prop for prop, value in vars(Meta).items() if isinstance(value, cached_property)), + ) +) + + def _serialize(doc, no_nulls=False, *, is_child=False): out = {} for key, value in doc.__dict__.items(): - if not is_child and isinstance(value, ListOrTuple): - if not value or not isinstance(value[0], BaseDocument): - # non standard list object, skip + if not is_child: + if key in CACHE_PROPERTIES: continue - out[key] = [_serialize(d, no_nulls=no_nulls, is_child=True) for d in value] + if isinstance(value, ListOrTuple): + if value and isinstance(value[0], BaseDocument): + out[key] = [_serialize(d, no_nulls=no_nulls, is_child=True) for d in value] - elif (not no_nulls and value is None) or isinstance(value, SerializableTypes): + continue + + if (not no_nulls and value is None) or isinstance(value, SerializableTypes): out[key] = value - # set empty lists for unset table fields if not is_child: + # set empty lists for unset table fields for fieldname in TABLE_DOCTYPES_FOR_DOCTYPE: if out.get(fieldname) is None: out[fieldname] = [] From 1f2219dbe8ed91adefef0f8d4a6463fdd8803299 Mon Sep 17 00:00:00 2001 From: MochaMind Date: Sun, 22 Jun 2025 17:52:39 +0530 Subject: [PATCH 082/108] chore: update POT file (#33049) --- frappe/locale/main.pot | 1204 +++++++++++++++------------------------- 1 file changed, 441 insertions(+), 763 deletions(-) diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot index 294c9254c0..869d395b0c 100644 --- a/frappe/locale/main.pot +++ b/frappe/locale/main.pot @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Framework VERSION\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-08 09:34+0000\n" -"PO-Revision-Date: 2025-06-08 09:34+0000\n" +"POT-Creation-Date: 2025-06-22 09:34+0000\n" +"PO-Revision-Date: 2025-06-22 09:34+0000\n" "Last-Translator: developers@frappe.io\n" "Language-Team: developers@frappe.io\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" #: frappe/templates/emails/download_data.html:9 msgid " to your browser" @@ -139,7 +139,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 "" @@ -147,7 +147,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:711 msgid "1 day ago" msgstr "" @@ -156,17 +156,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 "" @@ -178,37 +178,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 "" @@ -224,7 +224,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:712 msgid "5 days ago" msgstr "" @@ -244,7 +244,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 "" @@ -689,10 +689,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 "" @@ -804,17 +801,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 @@ -865,6 +851,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' @@ -895,7 +885,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1872 +#: frappe/model/document.py:1871 msgid "Action Failed" msgstr "" @@ -944,10 +934,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 "" @@ -1009,8 +999,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 "" @@ -1051,7 +1041,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 "" @@ -1060,10 +1050,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 "" @@ -1087,7 +1077,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 "" @@ -1122,7 +1112,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 "" @@ -1267,7 +1257,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 "" @@ -1422,11 +1412,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 "" @@ -1659,12 +1649,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 "" @@ -1673,10 +1657,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" @@ -1932,7 +1912,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 "" @@ -1940,11 +1920,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 "" @@ -2023,7 +2003,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:550 +#: frappe/model/document.py:549 msgid "Amendment Not Allowed" msgstr "" @@ -2112,15 +2092,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" @@ -2154,16 +2125,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 "" @@ -2313,7 +2279,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 "" @@ -2341,7 +2307,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 "" @@ -2467,7 +2433,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 @@ -2737,13 +2703,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" @@ -2781,12 +2745,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" @@ -2933,11 +2891,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 "" @@ -3151,66 +3109,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' @@ -3224,7 +3130,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 "" @@ -3622,15 +3528,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" @@ -3667,7 +3564,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 "" @@ -3742,12 +3639,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 @@ -4058,7 +3949,7 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1156 +#: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" msgstr "" @@ -4078,11 +3969,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 "" @@ -4165,7 +4056,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 "" @@ -4198,11 +4089,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 "" @@ -4218,7 +4109,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 "" @@ -4243,11 +4134,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 "" @@ -4273,7 +4164,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 "" @@ -4417,7 +4308,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 "" @@ -4437,7 +4328,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 "" @@ -4551,7 +4442,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 "" @@ -4644,10 +4535,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 "" @@ -4674,7 +4561,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 "" @@ -4848,7 +4734,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 "" @@ -4903,9 +4789,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 @@ -5046,7 +4932,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 @@ -5153,7 +5039,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 "" @@ -5249,7 +5135,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 "" @@ -5589,7 +5475,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 "" @@ -5618,7 +5504,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 "" @@ -5626,10 +5512,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" @@ -5680,7 +5570,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" @@ -5694,13 +5584,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 "" @@ -5811,7 +5701,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 @@ -5823,14 +5713,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 "" @@ -5853,7 +5743,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 "" @@ -6250,11 +6140,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 @@ -6263,9 +6148,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" @@ -6819,7 +6701,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 @@ -6862,7 +6744,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 "" @@ -6871,7 +6753,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 "" @@ -6957,7 +6839,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 "" @@ -7003,7 +6885,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 "" @@ -7117,6 +6999,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 @@ -7414,14 +7297,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 "" @@ -7555,7 +7434,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 "" @@ -7615,7 +7494,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 "" @@ -7733,7 +7612,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:477 +#: frappe/model/document.py:476 msgid "Document Queued" msgstr "" @@ -7786,7 +7665,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 "" @@ -7857,11 +7736,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 "" @@ -7890,7 +7769,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 "" @@ -8081,7 +7960,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 "" @@ -8092,7 +7971,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 "" @@ -8148,29 +8027,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 @@ -8200,7 +8056,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 "" @@ -8299,13 +8155,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 @@ -8468,7 +8324,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 "" @@ -8569,7 +8425,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 "" @@ -8577,7 +8433,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 "" @@ -8803,7 +8659,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 "" @@ -8826,11 +8682,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 "" @@ -8850,11 +8704,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 @@ -9014,7 +8863,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' @@ -9025,7 +8873,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 @@ -9038,7 +8885,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 "" @@ -9119,11 +8966,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 @@ -9302,7 +9144,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 "" @@ -9310,15 +9152,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 "" @@ -9467,7 +9309,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 "" @@ -9493,7 +9335,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 "" @@ -9550,8 +9392,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 "" @@ -9602,11 +9444,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 "" @@ -9914,8 +9756,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" @@ -9990,7 +9832,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 "" @@ -10093,7 +9935,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 "" @@ -10142,13 +9984,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 @@ -10349,7 +10184,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 "" @@ -10496,7 +10331,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 "" @@ -10504,7 +10339,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 "" @@ -10647,7 +10482,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 "" @@ -10677,7 +10512,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 "" @@ -10830,7 +10665,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 "" @@ -10862,7 +10697,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 "" @@ -10879,7 +10714,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 "" @@ -10907,13 +10742,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 "" @@ -10959,7 +10792,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 "" @@ -11010,16 +10843,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 "" @@ -11084,7 +10917,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 "" @@ -11372,32 +11205,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 @@ -11727,6 +11540,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' @@ -12050,17 +11867,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 "" @@ -12105,7 +11922,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 @@ -12117,7 +11934,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 "" @@ -12301,12 +12118,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" @@ -12437,16 +12248,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 "" @@ -12795,11 +12602,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 "" @@ -12866,11 +12673,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 "" @@ -12879,10 +12686,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 "" @@ -12957,7 +12764,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 "" @@ -12973,7 +12780,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 "" @@ -13022,11 +12829,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 "" @@ -13144,7 +12951,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 "" @@ -13184,7 +12991,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:102 +#: frappe/database/query.py:103 msgid "Invalid DocType: {0}" msgstr "" @@ -13229,6 +13036,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 "" @@ -13253,7 +13061,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" @@ -13282,7 +13090,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 "" @@ -13303,11 +13111,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 "" @@ -13331,7 +13139,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 "" @@ -13357,7 +13165,7 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:324 +#: frappe/app.py:317 msgid "Invalid request arguments" msgstr "" @@ -13541,7 +13349,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 "" @@ -13756,6 +13564,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 "" @@ -13787,7 +13599,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 "" @@ -14059,10 +13871,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 @@ -14147,11 +13959,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" @@ -14236,12 +14043,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 "" @@ -14285,7 +14092,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 "" @@ -14504,7 +14311,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 "" @@ -14519,11 +14326,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" @@ -14638,11 +14440,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 "" @@ -14655,7 +14457,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 "" @@ -14807,7 +14609,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 "" @@ -14938,7 +14740,7 @@ msgstr "" msgid "Login Page" msgstr "" -#: frappe/www/login.py:152 +#: frappe/www/login.py:156 msgid "Login To {0}" msgstr "" @@ -15205,7 +15007,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 "" @@ -15480,7 +15282,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 "" @@ -15659,7 +15461,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:672 +#: frappe/__init__.py:679 msgid "Method Not Allowed" msgstr "" @@ -15736,7 +15538,7 @@ msgstr "" msgid "Miss" msgstr "" -#: frappe/desk/form/meta.py:218 +#: frappe/desk/form/meta.py:194 msgid "Missing DocType" msgstr "" @@ -15761,7 +15563,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" @@ -15944,8 +15746,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 @@ -15953,7 +15753,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" @@ -16125,7 +15924,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" @@ -16292,7 +16091,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 "" @@ -16397,7 +16196,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 "" @@ -16431,7 +16230,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 "" @@ -16487,26 +16286,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 "" @@ -16518,7 +16317,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 "" @@ -16680,7 +16479,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 "" @@ -16821,7 +16620,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 "" @@ -16972,7 +16771,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 "" @@ -16981,7 +16780,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 "" @@ -17065,12 +16864,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 "" @@ -17085,7 +16878,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 "" @@ -17106,7 +16899,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 "" @@ -17132,9 +16925,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 @@ -17155,7 +16948,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" @@ -17186,7 +16979,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 "" @@ -17202,7 +16995,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:360 +#: frappe/permissions.py:370 msgid "Not allowed for {0}: {1}" msgstr "" @@ -17222,7 +17015,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 "" @@ -17238,12 +17031,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 "" @@ -17269,15 +17062,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 "" @@ -17337,13 +17121,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 "" @@ -17445,7 +17226,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 "" @@ -17463,7 +17244,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 "" @@ -17481,15 +17262,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" @@ -17505,7 +17277,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 "" @@ -17734,7 +17506,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 "" @@ -17830,19 +17602,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 "" @@ -18091,7 +17857,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 "" @@ -18203,7 +17969,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 "" @@ -18502,7 +18268,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 "" @@ -18562,11 +18328,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 "" @@ -18600,7 +18366,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 "" @@ -18612,7 +18378,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 "" @@ -18769,7 +18535,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 "" @@ -18930,8 +18696,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 "" @@ -18971,7 +18737,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 "" @@ -18987,7 +18753,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 "" @@ -19003,7 +18769,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 "" @@ -19031,11 +18797,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 "" @@ -19063,10 +18829,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 "" @@ -19083,7 +18845,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 "" @@ -19095,7 +18857,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 "" @@ -19113,7 +18875,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 "" @@ -19190,7 +18952,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 "" @@ -19214,7 +18976,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 "" @@ -19230,11 +18992,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 "" @@ -19262,7 +19024,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 "" @@ -19284,10 +19046,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 "" @@ -19296,7 +19054,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 "" @@ -19316,7 +19074,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 "" @@ -19324,19 +19082,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 "" @@ -19365,7 +19123,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 "" @@ -19678,8 +19436,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 "" @@ -19922,7 +19680,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 "" @@ -20243,7 +20001,7 @@ msgstr "" msgid "Queue" msgstr "" -#: frappe/utils/background_jobs.py:729 +#: frappe/utils/background_jobs.py:731 msgid "Queue Overloaded" msgstr "" @@ -20264,7 +20022,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 "" @@ -20297,12 +20055,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 "" @@ -20438,7 +20190,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 "" @@ -20540,7 +20292,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 "" @@ -20905,11 +20657,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 @@ -20928,12 +20680,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" @@ -20950,7 +20700,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#: frappe/core/doctype/user/user.py:1025 msgid "Registered but disabled" msgstr "" @@ -21113,7 +20863,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 "" @@ -21123,7 +20873,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 "" @@ -21187,7 +20937,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 "" @@ -21325,7 +21075,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 "" @@ -21377,7 +21127,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 "" @@ -21393,11 +21143,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 "" @@ -21433,7 +21183,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 "" @@ -21883,7 +21633,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 "" @@ -21998,7 +21748,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 "" @@ -22011,7 +21761,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 "" @@ -22089,7 +21839,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 "" @@ -22133,23 +21883,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' @@ -22290,7 +22023,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 @@ -22300,8 +22033,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 @@ -22318,8 +22051,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 "" @@ -22327,7 +22060,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 "" @@ -22493,7 +22226,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 "" @@ -22719,7 +22452,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 "" @@ -22799,7 +22532,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 "" @@ -23116,31 +22849,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 @@ -23157,14 +22870,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 "" @@ -23423,7 +23128,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 "" @@ -23489,7 +23194,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:360 +#: frappe/app.py:353 msgid "Session Expired" msgstr "" @@ -23498,7 +23203,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 "" @@ -23521,7 +23226,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 "" @@ -23547,7 +23252,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 "" @@ -23768,8 +23473,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 "" @@ -23865,6 +23570,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" @@ -24035,7 +23749,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 "" @@ -24145,7 +23859,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 "" @@ -24180,7 +23894,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 "" @@ -24825,7 +24539,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 @@ -25124,7 +24838,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 @@ -25221,7 +24935,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 "" @@ -25511,11 +25225,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 @@ -25524,7 +25236,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 @@ -25649,11 +25360,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 "" @@ -25672,7 +25383,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 @@ -25684,15 +25395,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 "" @@ -25770,12 +25472,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 "" @@ -25784,8 +25486,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 "" @@ -25793,7 +25495,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 "" @@ -25878,7 +25580,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 "" @@ -26049,15 +25751,15 @@ msgid "" "" 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 "" @@ -26069,7 +25771,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 "" @@ -26130,7 +25832,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 "" @@ -26159,7 +25861,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 "" @@ -26246,12 +25948,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 "" @@ -26289,7 +25991,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 "" @@ -26352,7 +26054,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 "" @@ -26416,7 +26118,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 "" @@ -26424,7 +26126,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 "" @@ -26490,7 +26192,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 "" @@ -26847,7 +26549,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 "" @@ -26872,10 +26574,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 @@ -26906,7 +26604,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 "" @@ -26922,7 +26620,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 "" @@ -26978,11 +26676,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 "" @@ -27046,8 +26744,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 "" @@ -27110,11 +26808,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 "" @@ -27228,7 +26926,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 "" @@ -27239,7 +26937,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 "" @@ -27387,7 +27085,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" @@ -27468,7 +27166,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" @@ -27530,7 +27228,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 "" @@ -27559,7 +27257,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:383 +#: frappe/app.py:376 msgid "Uncaught Exception" msgstr "" @@ -27792,7 +27490,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 "" @@ -27800,7 +27498,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:333 +#: frappe/utils/response.py:330 msgid "Updating" msgstr "" @@ -27874,18 +27572,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 @@ -27969,11 +27655,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 "" @@ -28090,7 +27776,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 "" @@ -28196,8 +27882,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 "" @@ -28294,7 +27980,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 "" @@ -28302,23 +27988,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 "" @@ -28331,7 +28017,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 "" @@ -28360,7 +28046,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 "" @@ -28500,15 +28186,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 "" @@ -28539,7 +28225,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1119 +#: frappe/model/base_document.py:1124 msgid "Value too big" msgstr "" @@ -29140,11 +28826,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 @@ -29153,9 +28834,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" @@ -29190,11 +28868,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 "" @@ -29227,7 +28905,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 "" @@ -29426,7 +29104,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 "" @@ -29496,11 +29174,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 "" @@ -29519,11 +29197,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 "" @@ -29542,13 +29220,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 "" @@ -29609,7 +29287,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 "" @@ -29649,11 +29327,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 "" @@ -29676,7 +29354,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 "" @@ -29688,7 +29366,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 "" @@ -29704,7 +29382,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 "" @@ -29712,7 +29390,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 "" @@ -29876,11 +29554,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 "" @@ -29892,11 +29570,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 "" @@ -29904,7 +29582,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 "" @@ -29957,23 +29635,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 "" @@ -29989,11 +29667,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 "" @@ -30001,7 +29679,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 "" @@ -30076,7 +29754,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 "" @@ -30159,7 +29837,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 "" @@ -30390,7 +30068,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 "" @@ -30942,7 +30620,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 "" @@ -30990,7 +30668,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 "" @@ -31000,7 +30678,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 "" @@ -31066,7 +30744,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 "" @@ -31079,7 +30757,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 "" @@ -31204,7 +30882,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 "" @@ -31213,27 +30891,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 "" @@ -31253,7 +30931,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 "" @@ -31282,11 +30960,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 "" @@ -31298,27 +30976,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 "" @@ -31329,11 +31007,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 "" @@ -31341,12 +31019,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 "" @@ -31362,7 +31040,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 "" @@ -31374,35 +31052,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 "" @@ -31477,7 +31155,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 "" @@ -31573,11 +31251,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 "" @@ -31593,7 +31271,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 "" @@ -31601,7 +31279,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 "" @@ -31609,7 +31287,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 "" @@ -31710,7 +31388,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 "" From 4fc2a39e44887a3c097a3e58fdcb50251991f943 Mon Sep 17 00:00:00 2001 From: Anoop Date: Mon, 23 Jun 2025 11:46:42 +0530 Subject: [PATCH 083/108] fix: table multiselect fieldname_remove not reflecting removed row (#33025) --- frappe/public/js/frappe/form/controls/table_multiselect.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/table_multiselect.js b/frappe/public/js/frappe/form/controls/table_multiselect.js index d3bfa81e32..da55378d5e 100644 --- a/frappe/public/js/frappe/form/controls/table_multiselect.js +++ b/frappe/public/js/frappe/form/controls/table_multiselect.js @@ -41,7 +41,10 @@ frappe.ui.form.ControlTableMultiSelect = class ControlTableMultiSelect extends ( ); }, () => { - this.parse_validate_and_set_in_model(""); + frappe.model.clear_doc(this.df.options, row.name); + + this.frm.dirty(); + this.refresh(); return this.frm.script_manager.trigger( `${this.df.fieldname}_remove`, From 16580c14cdd5fd60bb0c39e558ff8a893d0fb2f8 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 23 Jun 2025 12:30:33 +0530 Subject: [PATCH 084/108] fix: dont set assets_json during build (#33051) --- esbuild/esbuild.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/esbuild/esbuild.js b/esbuild/esbuild.js index f6218d58c7..b288b4e495 100644 --- a/esbuild/esbuild.js +++ b/esbuild/esbuild.js @@ -472,6 +472,11 @@ async function write_assets_json(metafile) { } async function update_assets_json_in_cache() { + // Redis won't be present during docker image build + if (process.env.FRAPPE_DOCKER_BUILD) { + return; + } + // update assets_json cache in redis, so that it can be read directly by python let client = get_redis_subscriber("redis_cache"); // handle error event to avoid printing stack traces From 4a7f337f0a6521b5a4b21769a7a4faef2b37523f Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 23 Jun 2025 13:30:05 +0530 Subject: [PATCH 085/108] fix: typing and error handling - add typing and comprehensive docstring - error handling for custom get_list methods in doctype controllers --- frappe/api/v2.py | 78 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 64 insertions(+), 14 deletions(-) diff --git a/frappe/api/v2.py b/frappe/api/v2.py index b372bd1adc..c9b42e45cf 100644 --- a/frappe/api/v2.py +++ b/frappe/api/v2.py @@ -75,19 +75,54 @@ def read_doc(doctype: str, name: str): return _doc -def document_list(doctype: str): +def document_list(doctype: str) -> list[dict[str, Any]]: + """ + GET /api/v2/document/?fields=[...],filters={...},... + + REST API endpoint for fetching doctype records + + Args: + doctype: DocType name + + Query Parameters (accessible via frappe.form_dict): + fields: JSON string of field names to fetch + filters: JSON string of filters to apply + order_by: Order by field + start: Starting offset for pagination (default: 0) + limit: Maximum number of records to fetch (default: 20) + group_by: Group by field + as_dict: Return results as dictionary (default: True) + + Response: + frappe.response["data"]: List of document records as dicts + frappe.response["has_next_page"]: Indicates if more pages are available + + Controller Customization: + Doctype controllers can customize queries by implementing a static get_list(query) method + that receives a QueryBuilder object and returns a modified QueryBuilder. + + Example: + class Project(Document): + @staticmethod + def get_list(query): + Project = frappe.qb.DocType("Project") + if user_has_role("Project Owner"): + query = query.where(Project.owner == frappe.session.user) + else: + query = query.where(Project.is_private == 0) + return query + """ from frappe.model.base_document import get_controller args = frappe.form_dict - - 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) - as_dict = args.get("as_dict", True) + fields: list | None = frappe.parse_json(args.get("fields", None)) + filters: dict | None = frappe.parse_json(args.get("filters", None)) + order_by: str | None = args.get("order_by", None) + start: int = cint(args.get("start", 0)) + limit: int = cint(args.get("limit", 20)) + group_by: str | None = args.get("group_by", None) + debug: bool = args.get("debug", False) + as_dict: bool = args.get("as_dict", True) query = frappe.qb.get_query( table=doctype, @@ -95,15 +130,30 @@ def document_list(doctype: str): filters=filters, order_by=order_by, offset=start, - limit=limit + 1, + limit=limit + 1, # Fetch one extra to check if there's a next page group_by=group_by, ignore_permissions=False, ) + + # Check if the doctype controller has a static get_list method controller = get_controller(doctype) if hasattr(controller, "get_list"): - return_value = controller.get_list(query) - if return_value is not None: - query = return_value + try: + return_value = controller.get_list(query) + + if return_value is not None: + # Validate that the returned value has a run method (is a QueryBuilder-like object) + if not hasattr(return_value, "run"): + frappe.throw( + _( + "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" + ).format(doctype, type(return_value).__name__) + ) + + query = return_value + + except Exception as e: + frappe.throw(_("Error in {0}.get_list: {1}").format(doctype, str(e))) data = query.run(as_dict=as_dict, debug=debug) frappe.response["has_next_page"] = len(data) > limit From acdc54ce8b6e4947fa451d5981b025d842e8b438 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Mon, 23 Jun 2025 13:44:41 +0530 Subject: [PATCH 086/108] fix: unscrub after quote --- frappe/core/doctype/communication/communication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py index 7193638070..72ee4349d3 100644 --- a/frappe/core/doctype/communication/communication.py +++ b/frappe/core/doctype/communication/communication.py @@ -579,7 +579,7 @@ def parse_email(email_strings): if not document_parts or len(document_parts) != 2: continue - doctype = unquote_plus(frappe.unscrub(document_parts[0])) + doctype = frappe.unscrub(unquote_plus(document_parts[0])) docname = unquote_plus(document_parts[1]) yield doctype, docname From c2e08b3822f2c99c1b7adfb1863208474c7e4c54 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 23 Jun 2025 14:54:22 +0530 Subject: [PATCH 087/108] chore: remove unused code --- frappe/database/query.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/frappe/database/query.py b/frappe/database/query.py index aafeef04c1..809b884182 100644 --- a/frappe/database/query.py +++ b/frappe/database/query.py @@ -1,7 +1,6 @@ import re -from ast import literal_eval from functools import lru_cache -from typing import TYPE_CHECKING, Any, Optional, Union +from typing import TYPE_CHECKING, Any import sqlparse from pypika.queries import QueryBuilder, Table @@ -31,11 +30,6 @@ 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+`|\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+`|\w+)$", flags=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`) From b59bf13682b217344af53c7e9b2e0381a8efddc4 Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 23 Jun 2025 17:09:39 +0530 Subject: [PATCH 088/108] fix: increment retry_count first to prevent recursion --- frappe/email/receive.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/email/receive.py b/frappe/email/receive.py index 8ad99777d9..e624d82a10 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -280,8 +280,9 @@ class EmailServer: except imaplib.IMAP4.abort: if self.retry_count < self.retry_limit: self.connect() - self.get_messages(folder) self.retry_count += 1 + self.get_messages(folder) + except Exception as e: if self.has_login_limit_exceeded(e): raise LoginLimitExceeded(e) from e From 27aa3ec335b056360b115b6d51d34072bf6ff0a4 Mon Sep 17 00:00:00 2001 From: MochaMind Date: Mon, 23 Jun 2025 22:25:47 +0530 Subject: [PATCH 089/108] fix: sync translations from crowdin (#32999) --- frappe/locale/ar.po | 1204 +- frappe/locale/bs.po | 1204 +- frappe/locale/cs.po | 1204 +- frappe/locale/de.po | 1212 +- frappe/locale/eo.po | 1204 +- frappe/locale/es.po | 1206 +- frappe/locale/fa.po | 1204 +- frappe/locale/fr.po | 1204 +- frappe/locale/hr.po | 1204 +- frappe/locale/hu.po | 1204 +- frappe/locale/it.po | 43612 +++++++++++++++++---------------------- frappe/locale/nl.po | 1316 +- frappe/locale/pl.po | 1204 +- frappe/locale/pt.po | 1204 +- frappe/locale/pt_BR.po | 1206 +- frappe/locale/ru.po | 1204 +- frappe/locale/sr.po | 31648 ++++++++++++++++++++++++++++ frappe/locale/sr_CS.po | 1274 +- frappe/locale/sv.po | 1332 +- frappe/locale/th.po | 1204 +- frappe/locale/tr.po | 1204 +- frappe/locale/vi.po | 1204 +- frappe/locale/zh.po | 1204 +- 23 files changed, 59626 insertions(+), 41240 deletions(-) create mode 100644 frappe/locale/sr.po diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po index d4faa87b6e..925d735b7f 100644 --- a/frappe/locale/ar.po +++ b/frappe/locale/ar.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:04\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: Arabic\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=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "X-Crowdin-Project: frappe\n" "X-Crowdin-Project-ID: 639578\n" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "تمت مزامنة حدث تقويم 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 "" @@ -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 "منذ 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 "قبل شهر" @@ -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 "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 "منذ سنة" -#: 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 "5 السجلات" -#: 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 "" @@ -664,10 +664,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 "الوصول إلى API" @@ -779,17 +776,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 "الوصول إلى Key Secret" - #. Name of a DocType #. Label of a Link in the Users Workspace #: frappe/core/doctype/access_log/access_log.json @@ -840,6 +826,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' @@ -870,7 +860,7 @@ msgstr "العمل / الطريق" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1872 +#: frappe/model/document.py:1871 msgid "Action Failed" msgstr "فشل العمل" @@ -919,10 +909,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 "الإجراءات" @@ -984,8 +974,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 "إضافة" @@ -1026,7 +1016,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 "إضافة مخطط إلى لوحة القيادة" @@ -1035,10 +1025,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 "إضافة عمود" @@ -1062,7 +1052,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 "إضافة عوامل تصفية" @@ -1097,7 +1087,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 "" @@ -1242,7 +1232,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 "إضافة إلى لوحة القيادة" @@ -1397,11 +1387,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 ".{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان" @@ -1634,12 +1624,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 "السماح بالوصول إلى تقويم Google" @@ -1648,10 +1632,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 "تسمح جوجل محرك الوصول" - #. Label of the allow_guest (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Allow Guest" @@ -1905,7 +1885,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 "مسجل بالفعل" @@ -1913,11 +1893,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}" @@ -1996,7 +1976,7 @@ msgstr "المعدل" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:550 +#: frappe/model/document.py:549 msgid "Amendment Not Allowed" msgstr "" @@ -2085,15 +2065,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" @@ -2127,16 +2098,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 "لم يتم تثبيت التطبيق {0}" @@ -2286,7 +2252,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 "هل تريد بالتأكيد حذف جميع الصفوف؟" @@ -2314,7 +2280,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 "" @@ -2440,7 +2406,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 @@ -2710,13 +2676,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" @@ -2754,12 +2718,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 Drive Access" - #. 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" @@ -2906,11 +2864,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 "لا يمكن تنشيط الربط التلقائي إلا إذا تم تمكين الوارد." @@ -3124,66 +3082,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' @@ -3197,7 +3103,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 "" @@ -3594,15 +3500,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" @@ -3639,7 +3536,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}" @@ -3714,12 +3611,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 @@ -4030,7 +3921,7 @@ msgstr "" msgid "Cannot Remove" msgstr "لا يمكن إزالة" -#: frappe/model/base_document.py:1156 +#: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" msgstr "" @@ -4050,11 +3941,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 "" @@ -4137,7 +4028,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 "لا يمكنك التعديل على وثيقة ملغية" @@ -4170,11 +4061,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}" @@ -4190,7 +4081,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 "لا يمكن إزالة معرف الحقل" @@ -4215,11 +4106,11 @@ msgstr "" 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 "" @@ -4245,7 +4136,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 "ملصق البطاقة" @@ -4387,7 +4278,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 "اسم المخطط" @@ -4407,7 +4298,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 "نوع الرسم البياني" @@ -4521,7 +4412,7 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "يتم عرض الجداول الفرعية كشبكة في 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 "اختر بطاقة موجودة أو أنشئ بطاقة جديدة" @@ -4614,10 +4505,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 Access بتخويل الوصول إلى Google Drive." - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4644,7 +4531,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} لإنشاء تحديث الرمز المميز." @@ -4818,7 +4704,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 "انهيار جميع" @@ -4873,9 +4759,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 @@ -5016,7 +4902,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 @@ -5123,7 +5009,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 "أكمال التسجيل" @@ -5219,7 +5105,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 "تكوين المخطط" @@ -5556,7 +5442,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}" @@ -5585,7 +5471,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 "عد التخصيصات" @@ -5593,10 +5479,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" @@ -5647,7 +5537,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" @@ -5661,13 +5551,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 "إنشاء مخطط" @@ -5778,7 +5668,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 @@ -5790,14 +5680,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}" @@ -5820,7 +5710,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 "" @@ -6217,11 +6107,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 @@ -6230,9 +6115,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" @@ -6786,7 +6668,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 @@ -6829,7 +6711,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 "" @@ -6838,7 +6720,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 "حذف التعليق؟" @@ -6924,7 +6806,7 @@ msgstr "حذف {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 "" @@ -6970,7 +6852,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 "" @@ -7084,6 +6966,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 @@ -7381,14 +7264,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 "" @@ -7521,7 +7400,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 "طريقة عرض DocType" @@ -7581,7 +7460,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" @@ -7699,7 +7578,7 @@ msgstr "شرط قاعدة تسمية المستند" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:477 +#: frappe/model/document.py:476 msgid "Document Queued" msgstr "المستند في قائمة الانتظار" @@ -7752,7 +7631,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 "حالة المستند" @@ -7823,11 +7702,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 "نوع المستند غير قابل للتقديم" @@ -7856,7 +7735,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 "" @@ -8047,7 +7926,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 "تحميل التقرير" @@ -8058,7 +7937,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 "قم بتنزيل بياناتك" @@ -8114,29 +7993,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 @@ -8166,7 +8022,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 "اسم مكرر" @@ -8265,13 +8121,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 @@ -8434,7 +8290,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}" @@ -8535,7 +8391,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 "تمت إضافة حساب البريد الإلكتروني عدة مرات" @@ -8543,7 +8399,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 "" @@ -8769,7 +8625,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 "" @@ -8792,11 +8648,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 "تمكين" @@ -8816,11 +8670,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 @@ -8979,7 +8828,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' @@ -8990,7 +8838,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 @@ -9003,7 +8850,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}" @@ -9084,11 +8931,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 @@ -9267,7 +9109,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 "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}" @@ -9275,15 +9117,15 @@ msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإل 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 "" @@ -9432,7 +9274,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} ثانية" @@ -9458,7 +9300,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 "توسيع الكل" @@ -9515,8 +9357,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 "تصدير" @@ -9567,11 +9409,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 "" @@ -9879,8 +9721,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" @@ -9955,7 +9797,7 @@ msgstr "لا يمكن تغيير نوع الحقل ل {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 "" @@ -10058,7 +9900,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 "" @@ -10107,13 +9949,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 @@ -10314,7 +10149,7 @@ msgstr "يمكن الوصول إلى filters عبر filters5, <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" "
      1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
      2. \n" "
      3. All values are given class value
      4. \n" "
      5. All Section Breaks are given class section-break
      6. \n" "
      7. All Column Breaks are given class column-break
      8. \n" -"
      \n" -"\n" -"

      Examples

      \n" -"\n" -"

      1. Left align integers

      \n" -"\n" -"
      [data-fieldtype=\"Int\"] .value { text-align: left; }
      \n" -"\n" -"

      1. Add border to sections except the last section

      \n" -"\n" +"
    \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" -"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" -"
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" #. 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" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" -#. Label of 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" +"
  1. All field groups (label + value) are set attributes data-fieldtype and data-fieldname
  2. \n" +"
  3. All values are given class value
  4. \n" +"
  5. All Section Breaks are given class section-break
  6. \n" +"
  7. All Column Breaks are given class column-break
  8. \n" +"
\n\n" +"

Examples

\n\n" +"

1. Left align integers

\n\n" +"
[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n" +"

1. Add border to sections except the last section

\n\n" +"
.section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
+".section-break:last-child { padding-bottom: 0px; border-bottom: 0px;  }
\n" +msgstr "

Помоћ за прилагођени CSS

\n\n" +"

Напомене:

\n\n" +"
    \n" +"
  1. Све групе поља (ознака + вредност) имају атрибуте data-fieldtype и data-fieldname
  2. \n" +"
  3. Све вредности имају класу value
  4. \n" +"
  5. Сви прекиди секција имају класуsection-break
  6. \n" +"
  7. Сви прекиди колона имају класу column-break
  8. \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
  1. Jinja Templating Language
  2. \n" +"\t
  3. Bootstrap CSS Framework
  4. \n" +"
\n" +"
\n" +"

Example

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

Common Functions

\n" +"\n" +"\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\n" +"
doc.get_formatted(\"[fieldname]\", [parent_doc])Get document value formatted as Date, Currency, etc. Pass parent doc for currency type fields.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Get value from another document.
\n" +msgstr "

Помоћ за формат штампе

\n" +"
\n" +"

Увод

\n" +"

Формати за штампање се обрађују на серверској страни користећи Јinja шаблонски језик. Сви обрасци имају приступ објектудоц који садржи информације о документу који се форматира. Такође можете приступити заједничким алатима преко frappe модула.

\n" +"

За стилизовање је доступан Boostrap CSS оквир, самим тим можете користити целу палету класа.

\n" +"
\n" +"

Референце

\n" +"
    \n" +"\t
  1. Jinja шаблонски језик
  2. \n" +"\t
  3. Боотстрап CSS оквир
  4. \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\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\n" +"
doc.get_formatted(\"[fieldname]\", [parent_doc])Добијање вредности документа форматиране као датум, валута, итд. Прослеђени матични документ doc за поља врсте валута.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Добијање вредности са другог документа.
\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} онемогућена" + +#. 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 "Подножје ће исправно приказати само у PDF формату" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "За DocType" + +#. Description of the 'Row Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "For DocType Link / DocType Action" +msgstr "За DocType линк / DocType радњу" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "За документ" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "За врсту документа" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +msgid "For Example: {} Open" +msgstr "На пример: {} отворен" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "За линкове, унесите DocType као опсег.\n" +"За избор, унесите листу опцију, сваку у новом реду." + +#. 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: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)." + +#: 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 "На пример, уколико откажете и измените INV004 , он ће постати нови документ INV004-1- Ово Вам помаже да пратите сваку измену." + +#: 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 "На пример: Уколико желите да укључите ИД документа, користите {0}" + +#. 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 "За помоћ погледајте API за клијентске скрипте и примери" + +#. 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 "За више информација, {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 "За више адреса, унесите адресе у различитим редовима, на пример test@test.com ⏎ test1@test.com" + +#: 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 "За {0} на нивоу {1} у {2} у реду {3}" + +#. 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 "URL-кодиран образац" + +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 +msgid "Format" +msgstr "Формат" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "Форматирај податке" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "Проследи" + +#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Forward To Email Address" +msgstr "Проследи на имејл адресу" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "Фракција" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "Јединица фракције" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 +msgid "Frappe" +msgstr "Frappe" + +#: frappe/public/js/frappe/ui/toolbar/about.js:4 +msgid "Frappe Framework" +msgstr "Frappe Framework" + +#: frappe/public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "Frappe Light" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "Frappe Mail" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "Frappe имејл 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 "Frappe имејл сајт" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "Frappe подршка" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "Frappe уређивач страница користећи компоненте" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "Бесплатно" + +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "Учесталост" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Friday" +msgstr "Петак" + +#. Label of the sender (Data) field in DocType 'Communication' +#. 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:1779 +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:245 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "Функција" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "Функција заснована на" + +#: frappe/__init__.py:677 +msgid "Function {0} is not whitelisted." +msgstr "Функција {0} није на листи дозвољених." + +#: 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 "Прослеђено: {0}" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "GET" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "GMail" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "GNU Affero General Public License" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "GNU General Public License" + +#. 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:872 +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 "Генериши URL за праћење" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "Геоапифy" + +#. 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 "Преузми променљиве за заглавље и подножје wkhtmltopdf" + +#: 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 "Преузми OpenID конфигурацију" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "Преузми PDF" + +#. 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 "Преузмите свој глобално препознатљив аватар са Gravatar.com" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +msgstr "Git грана" + +#. 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 "GitHub" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "Github стил markdown синтаксе" + +#. 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 "Идите на ову URL адресу након што завршите образац" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:10 +msgid "Go to {0}" +msgstr "Иди на {0}" + +#: 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 "Иди на листу {0}" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "Иди на страницу {0}" + +#: 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 "Google" + +#. 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 ИД" + +#. 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 "Анонимизуј ИП адресу у Google Аналyтицс" + +#. 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 "Google Calendar" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 +msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" +msgstr "Google Calendar - Контакт / имејл није пронађен. Није додат учесник за -
{0}" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "Google Calendar - Није могуће креирати календар за {0}, код грешка {1}." + +#: 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 - Није могуће обрисати догађај {0} из Google Calendar, код грешке {1}." + +#: 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 - Није могуће преузети догађај из Google Calendar, код грешке {0}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "Google Calendar - Није могуће пронаћи календар за {0}, код грешке {1}." + +#: 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 - Није могуће унети контакт у Google Contacts {0}, код грешке {1}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "Google Calendar - Није могуће унети догађај у Google Calendar {0}, код грешке {1}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "Google Calendar - Није могуће ажурирати догађај {0} у Google Calendar, код грешке {1}." + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "ИД догађаја у Google Calendar" + +#. 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 ИД" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "Google Calendar је подешен." + +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "Google Contacts" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "Google Contacts - Није могуће синхронизовати контакте из 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 "Google Contacts - Није могуће ажурирати контакт у 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 "Google Contacts Ид" + +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "Google Drive" + +#. 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 "Google Drive Picker" + +#. 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 "Google Drive Picker омогућен" + +#. 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" + +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Meet Link" +msgstr "Google Meet Линк" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "Google Services" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Settings" +msgstr "Google подешавања" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +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." +msgstr "URL Google Sheets-а мора да се завршава са \"gid={number}\". Копирај и налепи URL из адресне траке интернет претраживача и покушај поново." + +#. Label of the google_preview (HTML) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Google Snippet Preview" +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 "Врста одобрења" + +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "Графикон" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Gray" +msgstr "Сива" + +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "Веће од" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" +msgstr "Веће од или једнако" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Green" +msgstr "Зелена" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "Празно стање табеле" + +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "Дужина странице табеле" + +#: frappe/public/js/frappe/ui/keyboard.js:127 +msgid "Grid Shortcuts" +msgstr "Пречице за табелу" + +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Group" +msgstr "Група" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "Груписано по" + +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Based On" +msgstr "Груписано по је засновано на" + +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Type" +msgstr "Врста Груписано по" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Group Node" +msgstr "Чвор групе" + +#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Group Object Class" +msgstr "Група класе објекта" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "Групиши своје прилагођене врсте докумената унутар модула" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +msgid "Grouped by {0}" +msgstr "Груписано по {0}" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "HEAD" +msgstr "HEAD" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "ОВДЕ" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "HH:mm" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm:ss" +msgstr "HH:mm:ss" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the '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' +#. 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' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/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 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "HTML Editor" +msgstr "Уређивач HTML" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +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 "HTML за одељак заглавља. Опционо" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +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 "Половина" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Half Yearly" +msgstr "Полугодишње" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "Полугодишње" + +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "Обрађени имејлови" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Has Attachment" +msgstr "Поседује прилог" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "Поседује домен" + +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Has Next Condition" +msgstr "Поседује следећи услов" + +#. Name of a DocType +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "Поседује улогу" + +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "Садржи чаробњак за поставке" + +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "Поседује веб-приказ" + +#: frappe/templates/signup.html:19 +msgid "Have an account? Login" +msgstr "Имате налог? Пријавите се" + +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Header" +msgstr "Заглавље" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "HTML заглавље" + +#: frappe/printing/doctype/letter_head/letter_head.py:63 +msgid "Header HTML set from attachment {0}" +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 "Скрипта за заглавље" + +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "Заглавље и бреадцрумб" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Header, Robots" +msgstr "Заглавље, роботи" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "Скрипте за заглавље/подножје могу се користити за додавање динамичког понашања." + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Headers" +msgstr "Заглавља" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "Заглавља морају бити у формату речника" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Heading" +msgstr "Наслов" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "Топлотна мапа" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "Здраво" + +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "Помоћ" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json +msgid "Help Article" +msgstr "Чланак за помоћ" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "Чланци за помоћ" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json +msgid "Help Category" +msgstr "Категорија помоћи" + +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 +msgid "Help Dropdown" +msgstr "Падајући мени за помоћ" + +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Help HTML" +msgstr "HTML помоћ" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "Помоћ при претрази" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "Помоћ: да бисте повезали са другим записом у систему, користите \"/app/note/[Note Name]\" као URL везе. (don't use \"http://\")" + +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Helpful" +msgstr "Корисно" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "Helvetica" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "Helvetica Neue" + +#: frappe/public/js/frappe/utils/utils.js:1784 +msgid "Here's your tracking URL" +msgstr "Ево Вашег URL за праћење" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "Здраво {0}" + +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Hidden" +msgstr "Сакривено" + +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hidden Fields" +msgstr "Сакривена поља" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +msgid "Hide" +msgstr "Сакриј" + +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Hide Block" +msgstr "Сакриј блок" + +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Border" +msgstr "Сакриј границу" + +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Buttons" +msgstr "Сакриј дугмад" + +#. Label of the hide_cta (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Hide CTA" +msgstr "Сакриј позив на радњу" + +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Hide Copy" +msgstr "Сакриј копију" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "Сакриј прилагођење DocType-ове и извештаје" + +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Days" +msgstr "Сакриј дане" + +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "Сакриј потомке" + +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" +msgstr "Сакриј празна поља која су искључиво за преглед" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "Сакриј грешку" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "Сакриј ознаку" + +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "Сакриј пријављивање" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "Сакриј прегелд" + +#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "Сакриј дугме Претходно, Следеће и Затвори у дијалогу за истицање." + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "Сакриј сачувано" + +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Seconds" +msgstr "Сакриј секунде" + +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Hide Sidebar, Menu, and Comments" +msgstr "Сакриј бочну траку, мени и коментаре" + +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "Сакриј стандардни мени" + +#: frappe/public/js/frappe/list/list_view.js:1704 +msgid "Hide Tags" +msgstr "Сакриј ознаке" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "Сакриј викенде" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Hide descendant records of For Value." +msgstr "Сакриј потомке записа за Вредност." + +#: frappe/public/js/frappe/form/layout.js:286 +msgid "Hide details" +msgstr "Сакриј детаље" + +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "Сакриј подножје" + +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "Сакриј подножје у аутоматским имејл извештајима" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide footer signup" +msgstr "Сакриј подножје приликом регистрације" + +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "Сакриј навигациону траку" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "Висок" + +#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Higher priority rule will be applied first" +msgstr "Правило са вишим приоритетом биће примењено прво" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "Истакнуто" + +#: frappe/www/update-password.html:276 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "Савет: Укључите симболе, бројеве и велика слова у лозинку" + +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js: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 "Почетна страница" + +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Home Page" +msgstr "Почетна страница" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "Подешавање почетне странице" + +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 +msgid "Home/Test Folder 1" +msgstr "Почетна страница/Тест датотека 1" + +#: 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:332 +msgid "Home/Test Folder 2" +msgstr "Почетна страница/Тест датотека 2" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +msgid "Hourly" +msgstr "По часу" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Hourly Long" +msgstr "Током сваког часа" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "Одржавање на сваких сат времена" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hourly rate limit for generating password reset links" +msgstr "Ограничење по часу за генерисање линкова за ресетовање лозинке" + +#. 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 "Како треба да се форматира ова валута? Уколико није подешено, користиће се подразумеване вредности система" + +#. 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 "ИД" + +#: 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 "ИД" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "ИД (назив)" + +#. Description of the 'Field Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "ИД (назив) ентитета којем се поставља својство" + +#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "ИД-ови морају садржати само алфанумеричке карактере, не смеју садржати размаке и морају бити јединствени." + +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "IMAP Details" +msgstr "IMAP детаљи" + +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' +#. Name of a DocType +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "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 "IP адреса" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon" +msgstr "Иконица" + +#. Description of the 'Icon' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon will appear on the button" +msgstr "Иконица ће се приказати на дугмету" + +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Identity Details" +msgstr "Детаљи идентитета" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "Idx" + +#. 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 "Уколико је опција примени строге корисничке дозволе означена и корисничка дозвола је дефинисана за неки DocType за корисника, сви документу у којима је вредност линка празна, неће бити приказани том кориснику" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "If Checked workflow status will not override status in list view" +msgstr "Уколико је означено статус радног тока неће заменити статус у приказу листе" + +#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:66 +msgid "If Owner" +msgstr "Уколико је власник" + +#: frappe/core/page/permission_manager/permission_manager_help.html:25 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "Уколико улога нема приступ на нивоу 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 "Уколико је означено, сви остали радни токови постају неактивни." + +#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "Уколико је означено, негативне нумеричке вредности за валуту, количину или број приказаће се као позитивне" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "Уколико је означено, корисницима се неће приказати дијалог за потврду приступа." + +#. Description of the 'Disabled' (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "If disabled, this role will be removed from all users." +msgstr "Уколико је онемогућено, ова улога ће бити уклоњена свим корисницима." + +#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth +#. Enabled' (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" +msgstr "Уколико је омогућено, корисник може да се пријави са било које 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 "Уколико је омогућено, сви одговори на веб-обрасцу биће поднети анонимно" + +#. 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 "Уколико је омогућено, сви корисници могу да се пријаве са било које 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 "Уколико је омогућено, измене докумената се прате и приказују у временском редоследу" + +#. Description of the 'Track Views' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "Уколико је омогућено, прегледи документа се прате и могу се бележити више пута" + +#. Description of the 'Track Seen' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "Уколико је омогућено, документ ће бити означен као прегледан приликом првог отварања од стране корисника" + +#. Description of the 'Send System Notification' (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "Уколико је омогућено, обавештење ће се приказати у падајућем менију обавештења у горњем десном углу навигационе траке." + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "Уколико је омогућено, јачина лозинке ће бити примењена на основу минималне оцене јачине лозинке. Вредност 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 "Уколико је омогућено, корисници који се пријављују са ограничених 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 "Уколико је омогућено, корисници ће бити обавештени сваки пут када се пријаве. Уколико није омогућено, биће обавештени само једном." + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "Уколико је остављено празно, подразумевани радни простор ће бити последњи посећени радни простор" + +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "Уколико је у питању нестандардни порт (нпр. 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 "Уколико је у питању нестандардни порт (нпр. 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 "Уколико је у питању нестандардни порт (нпр. 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 "Уколико није подешено, прецизност валуте ће зависити од формата броја" + +#. 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 "Уколико је подешено, само корисници са овим улогама могу приступити овом графикону. Уколико није подешено, користиће се дозволе из DocType-а или извештаја." + +#. Description of the 'User Type' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "Уколико корисник има означену било коју улогу, постаје \"Системски корисник\". \"Системски корисник\" има приступ радној површини" + +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "Уколико Вам ове инструкције нису биле од помоћи, молимо Вас да додате своје предлоге на GitHub Issues." + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "Уколико није означено, вредност ће увек бити поново преузета приликом чувања." + +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "If user is the owner" +msgstr "Уколико је корисник власник" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "Уколико вршите ажурирање, молимо Вас да изаберете \"Измени\", у супротном постојећи редови неће бити обрисани." + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "Уколико отпремате нове записе, \"Серије именовања\" постају обавезне, уколико постоје." + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "Уколико отпремате нове записе, оставите колону \"назив\" (ИД) празну." + +#: frappe/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 "Уколико сте недавно вратили сајт из резервне копије, можда ћете морати да копирате 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 "Уколико ово поставите, ова ставка ће се појавити у падајућем менију испод изабраног матичног ентитета." + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "Уколико мислите да је ово неовлашћено, молимо Вас да промените лозинку администратора." + +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "Уколико Ваш 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 "Уколико су Ваши подаци у 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' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore User Permissions" +msgstr "Игнориши корисничке дозволе" + +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore XSS Filter" +msgstr "Игнориши XSS филтер" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Ignore attachments over this size" +msgstr "Игнориши прилоге веће од ове величине" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "Игнорисане апликације" + +#: frappe/model/workflow.py:146 +msgid "Illegal Document Status for {0}" +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 "Неважећи SQL упит" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "Неважећи шаблон" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Image" +msgstr "Слика" + +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Image Field" +msgstr "Поље слике" + +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Height" +msgstr "Висина слике" + +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Image Link" +msgstr "Линк слике" + +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "Преглед слике" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Width" +msgstr "Ширина слике" + +#: frappe/core/doctype/doctype/doctype.py:1506 +msgid "Image field must be a valid fieldname" +msgstr "Поље слике мора бити важећи назив поља" + +#: frappe/core/doctype/doctype/doctype.py:1508 +msgid "Image field must be of type Attach Image" +msgstr "Поље слике мора бити врсте Приложи слику" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "Линк слике '{0}' није важећи" + +#: frappe/core/doctype/file/file.js:107 +msgid "Image optimized" +msgstr "Слика је оптимизована" + +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "Слика: Оштећен ток података" + +#: frappe/public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "Слике" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:378 +msgid "Impersonate" +msgstr "Замени идентитет" + +#: frappe/core/doctype/user/user.js:405 +msgid "Impersonate as {0}" +msgstr "Замени идентитет као {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +msgid "Impersonated by {0}" +msgstr "Идентитет је замењен од стране {0}" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "Замена идентитета за {0}" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +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 "Имплицитно" + +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "Увоз" + +#: frappe/public/js/frappe/list/list_view.js:1766 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "Увоз" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Import Data" +msgstr "Увези податке" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "Увези имејл из" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "Увоз фајла" + +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File Errors and Warnings" +msgstr "Увези фајл са грешкама и упозорењима" + +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log" +msgstr "Евиденција увоза" + +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log Preview" +msgstr "Приказ евиденције увоза" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "Преглед увоза" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "Напредак увоза" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "Увоз претплатника" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "Увоз врсте" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "Увоз упозорења" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "Увоз зип фајла" + +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import from Google Sheets" +msgstr "Увези из Google Sheets-а" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "Шаблон за увоз треба да буде врсте .csv, .xlsx или .xls" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "Шаблон за увоз треба да садржи заглавље и барем један ред." + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "Увоз је истекао, молимо Вас да покушате поново." + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "Увоз {0} није дозвољен." + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "Увоз {0} од {1}" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "Увоз {0} од {1}, {2}" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "У" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In Days" +msgstr "У данима" + +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Filter" +msgstr "У филтеру" + +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Global Search" +msgstr "У глобалној претрази" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "У приказу табеле" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "У филтеру листе" + +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In List View" +msgstr "У приказу листе" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "У минутима" + +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Preview" +msgstr "У прегледу" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "У току" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "У режиму искључиво за читање" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "Као одговор на" + +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Standard Filter" +msgstr "У стандардном филтеру" + +#. Description of the 'Font Size' (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "In points. Default is 9." +msgstr "У поенима. Подразумевана вредност је 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 "У секундама" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "Неактиван" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "Пријемна пошта" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "Корисник пријемне поште" + +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "Преглед пријемне поште" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "Укључи онемогућено" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Include Name Field" +msgstr "Укључи назив поља" + +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "Укључи претрагу у горњој траци" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "Укључи тему из апликација" + +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Include Web View Link in Email" +msgstr "Укључи линк ка веб-приказу у имејлу" + +#: frappe/public/js/frappe/views/reports/query_report.js:1594 +msgid "Include filters" +msgstr "Укључи филтере" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Include indentation" +msgstr "Укључи индентацију" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "Укључи симболе, бројеве и велика слова у лозинку" + +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "Улазни" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming (POP/IMAP) Settings" +msgstr "Подешавање улазне поште (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 "Улазни имејлови (последњих 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 "Улазни сервер" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "Подешавање улаза" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "Налог за улазну пошту није исправан" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "Непотпуна имплементација виртуелног DocType-а" + +#: frappe/auth.py:255 +msgid "Incomplete login details" +msgstr "Непотпуни подаци за пријаву" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "Неисправна конфигурација" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "Неисправан URL" + +#: frappe/utils/password.py:101 +msgid "Incorrect User or Password" +msgstr "Погрешно корисничко име или лозинка" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "Погрешан верификациони код" + +#: frappe/model/document.py:1541 +msgid "Incorrect value in row {0}:" +msgstr "Погрешна вредност у реду {0}:" + +#: frappe/model/document.py:1543 +msgid "Incorrect value:" +msgstr "Погрешна вредност:" + +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1005 +msgid "Index" +msgstr "Индекс" + +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Index Web Pages for Search" +msgstr "Индексирај веб-странице за претрагу" + +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "Индекс је успешно креиран за колону {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 "Индексирање ауторизационог кода" + +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing refresh token" +msgstr "Индексирање токена за освежавање" + +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "Индикатор" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "Боја индикатора" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "Боја индикатора" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Info" +msgstr "Информација" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "Информација:" + +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Initial Sync Count" +msgstr "Број почетних синхронизација" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "InnoDB" + +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "Унесите постојећи назив улоге уколико желите да је проширите приступом друге улоге." + +#: frappe/core/doctype/data_import/data_import_list.js:35 +msgid "Insert" +msgstr "Унеси" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "Унеси изнад" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1824 +msgid "Insert After" +msgstr "Унеси након" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +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 "Поље за унос након поља '{0}' поменутог у прилагођеном пољу '{1}', са ознаком '{2}', не постоји" + +#: 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 "Унеси колону пре {0}" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "Унеси слику у маркдоwн" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "Унеси нове записа" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "Унеси стил" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +msgid "Install {0} from Marketplace" +msgstr "Инсталирај {0} из продавнице" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "Инсталирана апликација" + +#. Name of a DocType +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "Инсталиране апликације" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Installed Apps" +msgstr "Инсталиране апликације" + +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "Упутства" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "Упутства послата имејлом" + +#: frappe/permissions.py:827 +msgid "Insufficient Permission Level for {0}" +msgstr "Недовољан ниво овлашћена за {0}" + +#: frappe/database/query.py:383 +msgid "Insufficient Permission for {0}" +msgstr "Недовољна овлашћена за {0}" + +#: frappe/desk/reportview.py:360 +msgid "Insufficient Permissions for deleting Report" +msgstr "Недовољна овлашћена за брисање извештаја" + +#: frappe/desk/reportview.py:331 +msgid "Insufficient Permissions for editing Report" +msgstr "Недовољна овлашћена за уређивање извештаја" + +#: frappe/core/doctype/doctype/doctype.py:445 +msgid "Insufficient attachment limit" +msgstr "Премашен дозвољени број прилога" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "Цео број" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "Захтев за интеграцију" + +#. Group in User's connections +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Integrations" +msgstr "Интеграције" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Integrations can use this field to set email delivery status" +msgstr "Интеграције могу користити ово поље за постављање статуса испоруке имејла" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "Интер" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "Интересовања" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "Средње" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "Интерна грешка сервера" + +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "Интерна евиденција дељења докумената" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Intro Video URL" +msgstr "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 "Представите своју компанију посетиоцима сајта." + +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Introduction" +msgstr "Увод" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Introductory information for the Contact Us Page" +msgstr "Уводне информације за страницу Контактирајте нас" + +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Introspection URI" +msgstr "Introspection 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 "Неважеће" + +#: 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 "Неважећи \"depends_on\" израз" + +#: frappe/public/js/frappe/views/reports/query_report.js:513 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "Неважећи \"depends_on\" израз постављен у филтеру {0}" + +#: frappe/public/js/frappe/form/save.js:159 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "Неважечи \"mandatory_depends_on\" израз" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "Неважећа радња" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "Неважећи CSV формат" + +#: 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 "Неважећи услов: {}" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "Неважећи креденцијали" + +#: frappe/utils/data.py:136 frappe/utils/data.py:299 +msgid "Invalid Date" +msgstr "Неважећи датум" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "Неважећи DocType" + +#: frappe/database/query.py:103 +msgid "Invalid DocType: {0}" +msgstr "Неважећи DocType: {0}" + +#: frappe/core/doctype/doctype/doctype.py:1272 +msgid "Invalid Fieldname" +msgstr "Неважећи назив поља" + +#: frappe/core/doctype/file/file.py:209 +msgid "Invalid File URL" +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 "Неважећи формат филтера за поље {0} врсте {1}. Покушајте да користите иконицу филтера на пољу како бисте га исправно подесили" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "Неважећа вредност филтера" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "Неважећа почетна страница" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +msgid "Invalid Link" +msgstr "Неважећи линк" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "Неважећи токен за пријављивање" + +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "Неважеће пријављивање. Покушајте поново." + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "Неважећи имејл сервер. Исправите и покушајте поново." + +#: frappe/model/naming.py:101 +msgid "Invalid Naming Series: {}" +msgstr "Неважећа серија именовања: {}" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "Неважећа операција" + +#: frappe/core/doctype/doctype/doctype.py:1641 +#: frappe/core/doctype/doctype/doctype.py:1650 +msgid "Invalid Option" +msgstr "Неважећа опција" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "Неважећи излазни имејл сервер или порт: {0}" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +msgid "Invalid Output Format" +msgstr "Неважећи излазни формат" + +#: frappe/model/base_document.py:116 +msgid "Invalid Override" +msgstr "Неважећа измена" + +#: frappe/integrations/doctype/connected_app/connected_app.py:195 +msgid "Invalid Parameters." +msgstr "Неважећи параметри." + +#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 +#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 +#: frappe/www/update-password.html:247 +msgid "Invalid Password" +msgstr "Неважећа лозинка" + +#: frappe/utils/__init__.py:122 +msgid "Invalid Phone Number" +msgstr "Неважећи број телефона" + +#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "Неважећи захтев" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "Неважеће поље претраге {0}" + +#: frappe/core/doctype/doctype/doctype.py:1214 +msgid "Invalid Table Fieldname" +msgstr "Неважећи назив поља табеле" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +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 "Неважећи URL" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "Неважеће корисничко име или лозинка за подршку. Исправите и покушајте поново." + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "Неважеће вредности" + +#: frappe/integrations/doctype/webhook/webhook.py:116 +msgid "Invalid Webhook Secret" +msgstr "Неважећа тајна за Webhook" + +#: frappe/desk/reportview.py:186 +msgid "Invalid aggregate function" +msgstr "Неважећа агрегатна функција" + +#: frappe/public/js/frappe/views/reports/report_view.js:399 +msgid "Invalid column" +msgstr "Неважећа колона" + +#: frappe/model/document.py:1014 frappe/model/document.py:1028 +msgid "Invalid docstatus" +msgstr "Неважећи статус документа" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "Неважећи израз постављен у филтеру {0}" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "Неважећи израз постављен у филтеру {0} ({1})" + +#: frappe/utils/data.py:2186 +msgid "Invalid field name {0}" +msgstr "Неважећи назив поља {0}" + +#: frappe/core/doctype/doctype/doctype.py:1085 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "Неважећи назив поља '{0}' у аутоматском именовању" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "Неважећа путања фајла: {0}" + +#: frappe/database/query.py:189 +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +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 "Неважећи JSON додат у прилагођене опције: {0}" + +#: frappe/model/naming.py:490 +msgid "Invalid name type (integer) for varchar name column" +msgstr "Неважећа врста назива (цео број) за колону са називом типа варцхар" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "Неважећа серија именовања {}: недостаје тачка (.)" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "Неважећи или оштећен садржај за увоз" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "Неважеће преусмерење регеx функције у реду #{}: {}" + +#: frappe/app.py:317 +msgid "Invalid request arguments" +msgstr "Неважећи аргументи захтева" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +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 "Неважеће стање токена! Проверите да ли је токен креиран од стране 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 "Неважеће корисничко име или лозинка" + +#: frappe/model/naming.py:168 +msgid "Invalid value specified for UUID: {}" +msgstr "Неважећа вредност за UUID: {}" + +#: frappe/public/js/frappe/web_form/web_form.js:229 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "Неважеће вредности за поља:" + +#: frappe/printing/page/print/print.js:614 +msgid "Invalid wkhtmltopdf version" +msgstr "Неважећа верзија wкхтмлтопдф" + +#: frappe/core/doctype/doctype/doctype.py:1564 +msgid "Invalid {0} condition" +msgstr "Неважећи услов за {0}" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "Обрнуто" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "Позови као корисника" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "Јесте" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "Активно" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "Датотека прилога" + +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Calendar and Gantt" +msgstr "Календар и гантограм" + +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "Зависна табела" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" +msgstr "Завршено" + +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Is Completed" +msgstr "Завршено" + +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Is Custom" +msgstr "Прилагођено" + +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Custom Field" +msgstr "Прилагођено поље" + +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Is Default" +msgstr "Подразумевано" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "Динамички URL?" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "Датотека" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "Глобално" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "Сакривено" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "Датотека почетне странице" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "Обавезно поље" + +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Is Optional State" +msgstr "Опционо стање" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "Примарно" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Is Primary Contact" +msgstr "Примарни контакт" + +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Mobile" +msgstr "Примарни мобилни телефон" + +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Phone" +msgstr "Примарни телефон" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "Приватно" + +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Is Public" +msgstr "Јавно" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "Објављено поље" + +#: frappe/core/doctype/doctype/doctype.py:1515 +msgid "Is Published Field must be a valid fieldname" +msgstr "Објављено поље мора бити важећи назив поља" + +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 +msgid "Is Query Report" +msgstr "Упитни извештај" + +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "Удаљени захтев?" + +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "Да ли је поставка завршена?" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "Јединствени запис" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "Прескочено" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "Нежељено" + +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +msgid "Is Standard" +msgstr "Стандардно" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:39 +msgid "Is Submittable" +msgstr "Могуће поднети" + +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Is System Generated" +msgstr "Системски генерисано" + +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "Табела" + +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Is Table Field" +msgstr "Поље табеле" + +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "Стабло" + +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Is Unique" +msgstr "Јединствено" + +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Virtual" +msgstr "Виртуелно" + +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "Стандардно" + +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "Ризично је обрисати ову датотеку: {0}. Молимо Вас да контактирате систем менаџера." + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "Ознака ставке" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "Врста ставке" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "Ставке не може бити додата својим потомцима" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "JS" + +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "JS Message" +msgstr "JS порука" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON" +msgstr "JSON" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "JSON тело захтева" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "Петар Петровић" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "JavaScript" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "Формат JavaScript-а: frappe.query_reports['REPORTNAME'] = {}" + +#. 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" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "Javascript је онемогућен у Вашем интернет претраживачу" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "Jinja" + +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job ID" +msgstr "ИД задатка" + +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "Ид задатка" + +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Info" +msgstr "Информације о задатку" + +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "Назив задатка" + +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Status" +msgstr "Статус задатка" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "Задатак је успешно заустављен" + +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "Задатак је у стању {0} и не може бити отказан" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "Задатак није покренут." + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "Придружи се видео-конференцији са {0}" + +#: frappe/public/js/frappe/form/toolbar.js:395 +#: frappe/public/js/frappe/form/toolbar.js:830 +msgid "Jump to field" +msgstr "Иди на поље" + +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "К" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Kanban" +msgstr "Канбан" + +#. Name of a DocType +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 +msgid "Kanban Board" +msgstr "Канбан табла" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "Колона Канбан табле" + +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +msgid "Kanban Board Name" +msgstr "Назив Канбан табле" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "Канбан подешавање" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "Канбан приказ" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "Прати све токове ажурирања" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "Евидентира сву комуникацију" + +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType '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 "Кључ" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +msgstr "Пречице на тастатури" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "Keycloak" + +#: frappe/public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "Кх" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "База знања" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "Доприносилац базе знања" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "Уређивач базе знања" + +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "Л" + +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Auth" +msgstr "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 "Прилагођена 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 "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 "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 "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 "LDAP поље за групу" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +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 "Мапирање 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 "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 "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 "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 "LDAP поље за мобилни број телефона" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +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 "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 "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 "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 "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 "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 "Подешавање 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 "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 "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 "Креирање и мапирање 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 "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 "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 "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 "LDAP путања за претрагу корисника" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "LDAP подешавања нису исправна. Одговор на валидацију: {0}" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Label" +msgstr "Ознака" + +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "Ознака помоћи" + +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Label and Type" +msgstr "Ознака и врста" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "Ознака је обавезна" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "Циљна страница" + +#: frappe/public/js/frappe/form/print_utils.js:30 +msgid "Landscape" +msgstr "Пејзажни" + +#. Name of a DocType +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#: 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 "Језик" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "Шифра језика" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "Назив језика" + +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "Последњих 10 активних корисника" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "Последњих 14 дана" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "Последњих 30 дана" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "Последњих 6 месеци" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "Последњих 7 дана" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "Последњих 90 дана" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Active" +msgstr "Последња активност" + +#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Last Execution" +msgstr "Последње извршење" + +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Last Heartbeat" +msgstr "Последњи сигнал" + +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "Последња IP адреса" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "Последње познате верзије" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "Последње пријављивање" + +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "Датум последње измене" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 +msgid "Last Modified On" +msgstr "Измењено на" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 +msgid "Last Month" +msgstr "Прошли месец" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "Презиме" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "Датум последњег ресетовања лозинке" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 +msgid "Last Quarter" +msgstr "Прошли квартал" + +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Reset Password Key Generated On" +msgstr "Кључ за ресетовање лозинке последњи пут генерисан" + +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "Последње покретање" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Last Sync On" +msgstr "Последња синхронизација" + +#. Label of the last_synced_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 "Последња синхронизација на" + +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 +msgid "Last Updated By" +msgstr "Последње ажурирање од стране" + +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 +msgid "Last Updated On" +msgstr "Последње ажурирање на" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "Последњи корисник" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 +msgid "Last Week" +msgstr "Прошла недеља" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 +msgid "Last Year" +msgstr "Прошла година" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "Последњи пут синхронизовано {0}" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "Ресет распореда" + +#: frappe/custom/doctype/customize_form/customize_form.js:186 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "Распоред ће бити ресетован на стандардни. Да ли сте сигурни да желите то да урадите?" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "Сазнај више" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "Остави празно да се увек понавља" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "Напусти овај разговор" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "Књига" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Left" +msgstr "Лево" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 +msgctxt "alignment" +msgid "Left" +msgstr "Лево" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Bottom" +msgstr "Лево доле" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Center" +msgstr "Лево центрирано" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "Напустио је овај разговор" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "Правно" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" +msgstr "Дужина" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "Дужина прослеђеног низа података већа је од максималног дозвољеног броја поена за ознаке!" + +#: frappe/database/schema.py:134 +msgid "Length of {0} should be between 1 and 1000" +msgstr "Дужина поља {0} мора бити између 1 и 1000" + +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "Мање" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "Мање од" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "Мање од или једнако" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Let us continue with the onboarding" +msgstr "Хајде да наставимо са уводном обуком" + +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 +msgid "Let's Get Started" +msgstr "Хајде да почнемо" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "Хајде да избегнемо понављајуће речи и знакове" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "Хајде да подесимо твој налог" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 +msgid "Let's take you back to onboarding" +msgstr "Хајде да те вратимо на уводну обуку" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "Писмо" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js: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 "Заглавље" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "Заглавље је засновано на" + +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Image" +msgstr "Слика заглавља" + +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 +msgid "Letter Head Name" +msgstr "Назив заглавља" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "Скрипте за заглавље" + +#: frappe/printing/doctype/letter_head/letter_head.py:48 +msgid "Letter Head cannot be both disabled and default" +msgstr "Заглавље не може бити и онемогућено и подразумевано" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head in HTML" +msgstr "Заглавље у HTML-у" + +#. 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 "Ниво" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "Ниво 0 је за дозволе на нивоу документа, виши нивои су за дозволе на нивоу поља." + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "Библиотека" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "Лиценца" + +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "License Type" +msgstr "Врста лиценце" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Light" +msgstr "Светло" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Light Blue" +msgstr "Светлоплава" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "Светла боја" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "Светла тема" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "Лајк" + +#. 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' +#: frappe/website/doctype/blog_settings/blog_settings.json +msgid "Like limit per hour" +msgstr "Лимит лајкова по часу" + +#: frappe/templates/includes/likes/likes.py:30 +msgid "Like on {0}: {1}" +msgstr "Лајк на {0}: {1}" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "Лајковано" + +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 +msgid "Liked By" +msgstr "Лајковано до стране" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "Лајковања" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Limit" +msgstr "Лимит" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Line" +msgstr "Линијски" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: 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 "Линк" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "Линк картице" + +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Count" +msgstr "Број линкова" + +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Details" +msgstr "Детаљи линка" + +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link DocType" +msgstr "Линк 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 "Линк врсте документа" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "Линк је истекао" + +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "Ограничење резултата за поље линка" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link Fieldname" +msgstr "Назив поља линка" + +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Link Filters" +msgstr "Филтери линка" + +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Name" +msgstr "Назив линка" + +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Title" +msgstr "Наслов линка" + +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 +msgid "Link To" +msgstr "Линк ка" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "Линк ка у реду" + +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 +msgid "Link Type" +msgstr "Врста линка" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "Врста линка у реду" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "Линк за страницу О нама је \"/about\"." + +#. Description of the 'Home Page' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "Линк који води на почетну страницу веб-сајта. Стандардни линкови (почетна страница, пријављивање, производи, блог, о нама, контакт)" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "Линк ка страници коју желите да отворите. Оставите празно уколико желите да буде матични ентитет групе." + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +msgid "Linked" +msgstr "Повезано" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "Повезано са" + +#. 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 "Линкови" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "List" +msgstr "Листа" + +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "List / Search Settings" +msgstr "Листа / Подешавање претраге" + +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List Columns" +msgstr "Колоне листе" + +#. Name of a DocType +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "Филтер листе" + +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "Подешавање листе" + +#: frappe/public/js/frappe/list/list_view.js:1846 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "Подешавање листе" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "Приказ листе" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "Подешавање приказа листе" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "Излистирај врсту документа" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "Листа као [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "Листа имејл адреса, одвојена зарезом или новим редом." + +#. 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' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "Балансирање оптерећења" + +#: 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 "Учитај више" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "Учитај више комуникација" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "Учита више" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js: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 "Учитавање..." + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "Локација" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "Евиденција" + +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "Изврши записивање API захтева" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Log Data" +msgstr "Подаци евиденције" + +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Log DocType" +msgstr "Евиденција DocType" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +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 "Индекс евиденције" + +#. Name of a DocType +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "Корисник подешавања евиденције" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "Подешавање евиденције" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "Пријавите се да бисте приступили овој страници." + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "Ођавите се" + +#: frappe/handler.py:118 +msgid "Logged Out" +msgstr "Ођављени сте" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 +msgid "Login" +msgstr "Пријава" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "Пријава након" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "Пријава пре" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "Пријава није успела, покушајте поново" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "Неопходан је ИД за пријаву" + +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login Methods" +msgstr "Начини пријаве" + +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "Страница за пријаву" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "Пријава на {0}" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "Верификациони код за пријаву од {}" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "Пријавите се и погледајте у интернет претраживачу" + +#: frappe/website/doctype/web_form/web_form.js:367 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "Пријављивање је неопходно да бисте видели листу веб-образаца. Омогућите {0} да бисте видели подешавања листе" + +#: 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 "Пријављивање тренутно није дозвољено" + +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "Пријављивање је неопходно" + +#: frappe/twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "Сесија за пријаву је истекла, освежите страницу да покушате поново" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "Пријавите се да бисте коментарисали" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "Пријавите се да бисте започели нову дискусију" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "Пријављивање на {0}" + +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "Неопходан је токен за пријаву" + +#: frappe/www/login.html:126 frappe/www/login.html:210 +msgid "Login with Email Link" +msgstr "Пријављивање путем линка из имејла" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "Пријављивање путем Frappe Cloud" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +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 "Пријављивање путем линка из имејла" + +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link expiry (in minutes)" +msgstr "Истицање линка за пријављивање (у минутима)" + +#: frappe/auth.py:144 +msgid "Login with username and password is not allowed." +msgstr "Пријављивање путем корисничком имена и лозинке није дозвољена." + +#: frappe/www/login.html:100 +msgid "Login with {0}" +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 "Одјава" + +#: frappe/core/doctype/user/user.js:197 +msgid "Logout All Sessions" +msgstr "Одјава из свих сесија" + +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Logout All Sessions on Password Reset" +msgstr "Одјава из свих сесија након промене лозинке" + +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Logout From All Devices After Changing Password" +msgstr "Одјава са свих уређаја након промене лозинке" + +#. Group in User's connections +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Logs" +msgstr "Евиденције" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "Евиденције за брисање" + +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json +msgid "Logs to Clear" +msgstr "Евиденције за брисање" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Long Text" +msgstr "Дужи текст" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "Изгледа да нисте променили вредност" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "Изгледа да нисте додали ниједну екстерну апликацију." + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "Изгледа да нисте примили ниједно обавештење." + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "Низак" + +#: frappe/public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "М" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "MIT лиценца" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "Госпођа" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section" +msgstr "Главни одељак" + +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (HTML)" +msgstr "Главни одељак (HTML)" + +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (Markdown)" +msgstr "Главни одељак (Markdown)" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "Менаџер одржавања" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "Корисник одржавања" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "Главно" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Make \"name\" searchable in Global Search" +msgstr "Омогући \"назив\" доступним за претрагу у глобалној претрази" + +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "Учини прилог јавним (подразумевано)" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make Attachments Public by Default" +msgstr "Учини прилоге јавним као подразумевано" + +#. Description of the 'Disable Username/Password Login' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "Побрините се да сте конфигурисали кључ за пријављивање путем друштвених мрежа пре него што онемогућите ову опцију како бисте спречили закључавање налога" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "Користи дуже обрасце на тастатури" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "Направи {0}" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "Учини страницу јавном" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "Мушко" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "Управљај екстерним апликацијама" + +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "Управљај својим подацима" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Mandatory" +msgstr "Обавезно" + +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Mandatory Depends On" +msgstr "Обавезно зависи од" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "Обавезно зависи од (JS)" + +#: frappe/website/doctype/web_form/web_form.py:470 +msgid "Mandatory Information missing:" +msgstr "Недостају обавезни подаци:" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "Обавезно поље: постави улогу за" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "Обавезно поље: {0}" + +#: frappe/public/js/frappe/form/save.js:120 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "Обавезна поља су неопходна у табели {0}, ред {1}" + +#: frappe/public/js/frappe/form/save.js:125 +msgid "Mandatory fields required in {0}" +msgstr "Обавезна поља су неопходна у {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:234 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "Обавезна поља су неопходна:" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "Обавезно:" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "Мапа" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "Мапирај колоне" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "Приказ мапирања" + +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "Мапирај колоне из {0} у поља у {1}" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "Мапирај параметре путање у променљиве обрасца. Пример /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" +"
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" +"
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" +msgstr "Опције именовања:\n" +"
  1. field:[fieldname] - По пољу
  2. naming_series: - По серији именовања (поље под називом намингсериес мора бити присутно)
  3. Промпт - Одговори кориснику за унос назива
  4. [series] - Серије са префиксом (одвојене тачком); на пример PRE.#####
  5. \n" +"
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Замените све речи у заградама (називи поља, датумске речи (DD, MM, YY), серије) са њиховом вредношћу. Ван заграда, могу се користити било који карактери.
" + +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Rule" +msgstr "Правило именовања" + +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Naming Series" +msgstr "Серија именовања" + +#: frappe/model/naming.py:260 +msgid "Naming Series mandatory" +msgstr "Серија именовања је обавезна" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar" +msgstr "Навигациона трака" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "Ставка навигационе траке" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json +msgid "Navbar Settings" +msgstr "Подешавање навигационе траке" + +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template" +msgstr "Шаблон навигационе траке" + +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template Values" +msgstr "Вредности шаблона навигационе траке" + +#: frappe/public/js/frappe/list/list_view.js:1237 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "Помери листу према доле" + +#: frappe/public/js/frappe/list/list_view.js:1244 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "Помери листу према горе" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "Иди на главни садржај" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "Подешавање навигације" + +#: frappe/desk/doctype/workspace/workspace.py:319 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника" + +#: frappe/model/document.py:792 +msgid "Negative Value" +msgstr "Негативна вредност" + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "Грешка у угњежденом сету. Молимо Вас да контактирате администратора." + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "Подешавање мрежног штампача" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js: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 "Нови" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "Нова активност" + +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "Нова адреса" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "Нови графикон" + +#: frappe/templates/includes/comments/comments.py:62 +msgid "New Comment on {0}: {1}" +msgstr "Нови коментар на {0}: {1}" + +#: 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 "Нови прилагођени формат штампе" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "New Document Form" +msgstr "Нови образац документа" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "Нови документ подељен {0}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "Нови имејл" + +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "Нови имејл налог" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "Нови догађај" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "Нова датотека" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +msgid "New Kanban Board" +msgstr "Нова Канбан табла" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "Нови линкови" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 +msgid "New Mention on {0}" +msgstr "Нова помињања на {0}" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "Нова порука са контакт странице веб-сајта" + +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:713 +msgid "New Name" +msgstr "Нови назив" + +#: frappe/email/doctype/email_group/email_group.js:67 +msgid "New Newsletter" +msgstr "Нови билтен" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "Ново обавештење" + +#: 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 "Нова лозинка" + +#: 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 "Нови назив формата штампе" + +#: 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 "Нови назив извештаја" + +#. 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 "Нови корисници (претходних 30 дана)" + +#: 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 "Нови назив радног тока" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "Нови радни простор" + +#: frappe/www/update-password.html:79 +msgid "New password cannot be same as old password" +msgstr "Нова лозинка не сме бити иста као стара лозинка" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "Нова ажурирања су доступна" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "New users will have to be manually registered by system managers." +msgstr "Нови корисници ће морати бити ручно регистровани од стране систем менаџера." + +#. Description of the 'Set Value' (Small Text) field in DocType 'Property +#. Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "New value to be set" +msgstr "Нова вредност треба да буде постављена" + +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js: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 "Нови {0}" + +#: 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:384 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "Нови {0} {1} додат у контролну таблу {2}" + +#: frappe/public/js/frappe/views/reports/query_report.js:389 +msgid "New {0} {1} created" +msgstr "Нови {0} {1} креиран" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +msgid "New {0}: {1}" +msgstr "Нови {0}: {1}" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "Нови {} верзије за следеће апликација су доступне" + +#: frappe/core/doctype/user/user.py:804 +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 +#: 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 "Наредних 14 дана" + +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "Наредних 30 дана" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "Наредних 6 месеци" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +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 "Шаблон за следећу радњу путем имејла" + +#. 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 "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 "Следеће извршавање" + +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Form Tour" +msgstr "Наредни корак обиласка обрасца" + +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "Следећи месец" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "Следећи квартал" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Next Schedule Date" +msgstr "Датум следећег заказивања" + +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "Следећи заказани датум" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Next State" +msgstr "Следеће стање" + +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Step Condition" +msgstr "Услов за следећи корак" + +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Next Sync Token" +msgstr "Следећи токен за синхронизацију" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "Следеће недеље" + +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "Следеће године" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "Следеће радње" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next on Click" +msgstr "Следеће на клик" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py: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 "Не" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "Не" + +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "Не" + +#: frappe/www/third_party_apps.html:56 +msgid "No Active Sessions" +msgstr "Нема активних сесија" + +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "No Copy" +msgstr "Без копирања" + +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py: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 "Нема података" + +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "Нема података..." + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "Нема имејл налога" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "Ниједан имејл налог није додељен" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "Нема имејлова" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "Није пронађен унос за корисника {0} у LDAP-у!" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "Ниједан филтер није подешен" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "Нема Google Calendar догађаја за синхронизацију." + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "Нема слика" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "Ниједан LDAP корисник није пронађен за имејл: {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 "Нема ознаке" + +#: 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 "Нема заглавља" + +#: frappe/model/naming.py:481 +msgid "No Name Specified for {0}" +msgstr "Није наведен назив за {0}" + +#: 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 "Дозволе нису наведене" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "Нема подешених дозвола за овај критеријум." + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "Нема дозвољених графикона" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "Нема дозвољених графикона на контролној табли" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "Нема прегледа" + +#: frappe/printing/page/print/print.js:707 +msgid "No Preview Available" +msgstr "Преглед није доступан" + +#: frappe/printing/page/print/print.js:862 +msgid "No Printer is Available." +msgstr "Ниједан штампач није доступан." + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "Нема повезани RQ Workers. Покушајте да рестартујете bench." + +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "Нема резултата" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "Ниједан резултат није пронађен" + +#: frappe/core/doctype/user/user.py:805 +msgid "No Roles Specified" +msgstr "Улоге нису наведене" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +msgid "No Select Field Found" +msgstr "Није пронађено поље за избор" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "Нема предлога" + +#: frappe/desk/reportview.py:672 +msgid "No Tags" +msgstr "Нема ознака" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "Нема предстојећих догађаја" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "Ниједна адреса још увек није додата." + +#: frappe/email/doctype/notification/notification.js:229 +msgid "No alerts for today" +msgstr "Нема упозорења за данас" + +#: 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 "Нису пронађени неисправни линкови у садржају имејла" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "Нема промена у документу" + +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "Није извршена ниједна промена" + +#: frappe/model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "Није дошло до промене јер су стари и нови назив исти." + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "Нема промена за синхронизацију" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "Нема промена за ажурирање" + +#: frappe/website/doctype/blog_post/blog_post.py:378 +msgid "No comments yet" +msgstr "Још увек нема коментара" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet. " +msgstr "Још увек нема коментара. " + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "Ниједан контакт није још увек додат." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +msgid "No contacts linked to document" +msgstr "Ниједан контакт није повезан са документом" + +#: frappe/desk/query_report.py:342 +msgid "No data to export" +msgstr "Нема података за извоз" + +#: frappe/contacts/doctype/address/address.py:246 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "Нија пронађен подразумевани шаблон адресе. Молимо Вас да креирате нови у Подешавање > Штампање и брендирање > Шаблон адресе." + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "Нису пронађени документи са ознаком {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 "Ниједан имејл налог није повезан са корисником. Молимо Вас да додате налогу у оквиру Корисник > Пријемна пошта имејла." + +#: 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 "Нема приложених фајлова" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "Ниједан филтер није пронађен" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "Ниједан филтер није изабран" + +#: frappe/desk/form/utils.py:111 +msgid "No further records" +msgstr "Нема додатних записа" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "Нема одговарајућих записа. Покушајте другачију претрагу" + +#: frappe/public/js/frappe/web_form/web_form_list.js:161 +msgid "No more items to display" +msgstr "Нема више ставки за приказ" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "Нема потребе за симболима, цифрама или великим словима." + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "Нема нових синхронизованих Google Contacts." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "Нема нових обавештења" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "Број колона" + +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Requested SMS" +msgstr "Број захтеваних 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 "Број редова (максимално 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 "Број послатих SMS порука" + +#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "Не постоји дозвола за {0}" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "Не постоји дозвола за '{0}' {1}" + +#: frappe/model/db_query.py:950 +msgid "No permission to read {0}" +msgstr "Не постоји дозвола за читање {0}" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "Не постоји дозвола за {0} {1} {2}" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "Ниједан запис није обрисан" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +msgid "No records present in {0}" +msgstr "Ниједан запис није доступан у {0}" + +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "Нема означених записа." + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 +msgid "No records will be exported" +msgstr "Ниједан запис неће бити извезен" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "Нема редова" + +#: frappe/email/doctype/notification/notification.py:129 +msgid "No subject" +msgstr "Нема наслова" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "Није пронађен шаблон на путањи: {0}" + +#: 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 "Нема {0}" + +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "Није пронађен ниједан {0}" + +#: frappe/public/js/frappe/web_form/web_form_list.js:233 +msgid "No {0} found" +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 "Нема {0} који одговарају филтерима. Очистите филтере да видите све {0}." + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +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 "Бр." + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "Номатин" + +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Non Negative" +msgstr "Није негативна вредност" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "Неподударан" + +#: frappe/public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "Ниједно: Крај радног тока" + +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Copies" +msgstr "Нормализоване копије" + +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "Нормализовани упити" + +#: frappe/core/doctype/user/user.py:1018 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "Није дозвољено" + +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "Није дозвољено: Корисник је онемогућен" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "Нису преци од" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "Нису потомци од" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "Није једнако" + +#: frappe/app.py:367 frappe/www/404.html:3 +msgid "Not Found" +msgstr "Није пронађено" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "Није од помоћи" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "Није у" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "Није слично" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "Није повезани ни са једним записом" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "Не може бити празно" + +#: frappe/__init__.py: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 "Није дозвољено" + +#: frappe/desk/query_report.py:542 +msgid "Not Permitted to read {0}" +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 "Није објављено" + +#: 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 "Није сачувано" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "Није виђено" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/email/doctype/newsletter/newsletter_list.js:9 +msgid "Not Sent" +msgstr "Није послато" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "Није постављено" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "Није постављено" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "Неважећи Comma Separated Value (CSV фајл)" + +#: frappe/core/doctype/user/user.py:265 +msgid "Not a valid User Image." +msgstr "Неважећа слика корисника." + +#: frappe/model/workflow.py:114 +msgid "Not a valid Workflow Action" +msgstr "Неважећа радња радног тока" + +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "Неважећи корисник" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "Није активно" + +#: frappe/permissions.py:370 +msgid "Not allowed for {0}: {1}" +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 "Није дозвољено приложити документа врсте {0}, молимо Вас да омогућите Дозволи штампу за {0} у подешавањима штампе" + +#: frappe/core/doctype/doctype/doctype.py:335 +msgid "Not allowed to create custom Virtual DocType." +msgstr "Није дозвољено креирање прилагођеног виртуелног DocType-а." + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "Није дозвољено штампање отказаних докумената" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "Није дозвољено штампање докумената у нацрту" + +#: frappe/permissions.py:213 +msgid "Not allowed via controller permission check" +msgstr "Није дозвољено према провереним дозволама контролера" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "Није пронађено" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "Није у развојном режиму" + +#: frappe/core/doctype/doctype/doctype.py:330 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "Није у развојном режиму! Поставите у ситецонфиг.јсон или направите 'Прилагођени' DocType." + +#: 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 "Није дозвољено" + +#: frappe/public/js/frappe/list/list_view.js:50 +msgid "Not permitted to view {0}" +msgstr "Није дозвољено за преглед {0}" + +#. Label of a Link in the Tools Workspace +#. 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 "Напомена" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "Напомена виђена од стране" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "Напомена:" + +#: frappe/public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "Напомена: Промена назива страница ће прекинути претходни URL ка овој страници." + +#: frappe/core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +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 "Напомена: За најбоље резултате, слике морају бити исте величине и ширина мора бити већа од висине." + +#. Description of the 'Allow only one session per user' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "Напомена: Вишеструке сесије ће бити дозвољене на мобилним уређајима" + +#: frappe/core/doctype/user/user.js: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 "Напомена: Ваш захтев за брисање налога биће испуњен у року од {0} часова." + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "Напомене:" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "Нема ничег новог" + +#: frappe/public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "Нема више ставки за понављање" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "Нема више ставки за опозив" + +#: frappe/public/js/frappe/list/base_list.js: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 "Нема ничега за приказивање" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "Нема ничега за ажурирање" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json +msgid "Notification" +msgstr "Обавештење" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "Евиденција обавештења" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "Прималац обавештења" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 +msgid "Notification Settings" +msgstr "Подешавање обавештења" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "Документ на који је корисник претплаћен за обавештења" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "Обавештење послато ка" + +#: frappe/email/doctype/notification/notification.py:500 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "Обавештење: купац {0} нема подешен број мобилног телефона" + +#: frappe/email/doctype/notification/notification.py:486 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "Обавештење: документ {0} нема подешен {1} број (поље: {2})" + +#: frappe/email/doctype/notification/notification.py:495 +msgid "Notification: user {0} has no Mobile number set" +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 "Обавештења" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "Обавештења онемогућена" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "Обавештења и масовни имејлови биће послати са овог излазног сервера." + +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify Users On Every Login" +msgstr "Обавести кориснике при сваком пријављивању" + +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Notify by Email" +msgstr "Обавести путем имејла" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "Обавести путем имејла" + +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied" +msgstr "Обавести уколико није одговорено" + +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied for (in mins)" +msgstr "Обавести уколико није одговорено (у минутима)" + +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify users with a popup when they log in" +msgstr "Обавести кориснике путем искачућег прозора када се пријаве" + +#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "Сада" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "Број" + +#. Name of a DocType +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 +msgid "Number Card" +msgstr "Бројчана картица" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "Линк бројчане картице" + +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Number Card Name" +msgstr "Назив бројчане картице" + +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 +msgid "Number Cards" +msgstr "Бројчане картице" + +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json +msgid "Number Format" +msgstr "Формат броја" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "Број резервних копија" + +#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Number of Groups" +msgstr "Број група" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "Бруп упита" + +#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "Број поља за приложене фајлове је већи од {}, ограничење је ажурирано на {}." + +#: frappe/core/doctype/system_settings/system_settings.py:170 +msgid "Number of backups must be greater than zero." +msgstr "Број резервних копија мора бити већи од нуле." + +#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "Број колона за поље у мрежи (Укупно колона у мрежи треба да буде мањи од 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 "Број колона за поље у листи или мрежи (Укупно колона треба да буде мањи од 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 "Број дана након којих ће линк за приказ докумената у веб-приказу, послат путем имејла, истећи" + +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "Број кључева" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "Број локалних резервних копија" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "OAuth" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "OAuth ауторизациони код" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "OAuth токен носиоца" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Client" +msgstr "OAuth клијент" + +#. 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 "OAuth ИД клијента" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "OAuth улога клијента" + +#: frappe/email/oauth.py:30 +msgid "OAuth Error" +msgstr "OAuth грешка" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Provider Settings" +msgstr "Подешавање OAuth провајдера" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "OAuth опсег" + +#: frappe/email/doctype/email_account/email_account.js:250 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "OAuth је омогућен, али није ауторизован. Молимо Вас да користите дугме \"Ауторизуј приступ путем API-ја\" за то." + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "ОПЦИЈЕ" + +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" +msgstr "ИЛИ" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "Апликација за једнократну лозинку" + +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP Issuer Name" +msgstr "Назив издаваоца једнократне лозинке" + +#: frappe/twofactor.py:445 +msgid "OTP Secret Reset - {0}" +msgstr "Ресетовање тајне за једнократну лозинку - {0}" + +#: frappe/twofactor.py:464 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "Тајна за једнократну лозинку је ресетована. Поновна регистрација биће неопходна приликом следећег пријављивања." + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "Поставке једнократне лозинке помоћу апликације за једнократну лозинку нису завршене. Молимо Вас да контактирате администратора." + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "Појављивања" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "Искључено" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +msgstr "Канцеларија" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Office 365" +msgstr "Office 365" + +#: 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 "Помак X" + +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset Y" +msgstr "Помак Y" + +#: frappe/www/update-password.html:38 +msgid "Old Password" +msgstr "Стара лозинка" + +#: frappe/custom/doctype/custom_field/custom_field.py:412 +msgid "Old and new fieldnames are same." +msgstr "Стари и нови називи поља су исти." + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +msgstr "Старије резервне копије биће аутоматски обрисане" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "Најстарији непланирани задатак" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "На чекању" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Authorization" +msgstr "При ауторизацији плаћања" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "При обради наплате плаћања" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "При неуспешном плаћању" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "При обради преузимања налога за плаћање" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "При обради наплате налога за плаћање" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "При извршеном плаћању" + +#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "Означавањем ове опције, URL ће бити третиран као jinja темплате стринг" + +#: 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 "На {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:335 +msgid "Onboard" +msgstr "Уводна обука" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "Назив уводне обуке" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "Дозволе за уводну обуку" + +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Onboarding Status" +msgstr "Статус уводне обуке" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "Корак уводне обуке" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "Мапа уводне обуке" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "Уводна обука завршена" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:42 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "Једном када су поднети, документи који се могу поднети не могу се мењати. Могу се само отказати или изменити." + +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "Када ово поставите, корисници ће моћи приступити само документима (нпр. објаве на блогу) где линк постоји (нпр. блогер)." + +#: frappe/www/complete_signup.html:7 +msgid "One Last Step" +msgstr "Још један корак" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "Код за регистрацију једнократне лозинке (OTP) са {}" + +#: 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 "Дозвољено је искључиво 200 уноса по захтеву" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "Искључиво администратор може обрисати имејл чекање" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "Искључиво администратор може да уређује" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "Искључиво администратор може сачувати стандардни извештај. Молимо Вас да преименујете и сачувате." + +#: frappe/recorder.py:316 +msgid "Only Administrator is allowed to use Recorder" +msgstr "Искључиво администратор може да користи алат за снимање" + +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Only Allow Edit For" +msgstr "Дозволи уређивање само за" + +#: frappe/core/doctype/doctype/doctype.py:1620 +msgid "Only Options allowed for Data field are:" +msgstr "Једине опције дозвољене за поље података су:" + +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Only Send Records Updated in Last X Hours" +msgstr "Пошаљите само записе ажуриране у последњи X часова" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "Искључиво менаџер радног простора може да уређује јавне радне просторе" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "Извоз прилагођавања је дозвољен само у развојном режиму" + +#: frappe/model/document.py: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:328 +msgid "Only for" +msgstr "Искључиво за" + +#: frappe/core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "Искључиво су обавезна поља неопходна за нове записе. Можете обрисати необавезна поља уколико желите." + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "Може бити постављен само један {0} као примарни." + +#: frappe/desk/reportview.py:357 +msgid "Only reports of type Report Builder can be deleted" +msgstr "Могу се брисати само извештаји креирани помоћу уређивача извештаја" + +#: frappe/desk/reportview.py:328 +msgid "Only reports of type Report Builder can be edited" +msgstr "Могу се уређивати само извештаји креирани помоћу уређивача извештаја" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац." + +#: frappe/model/delete_doc.py:240 +msgid "Only the Administrator can delete a standard DocType." +msgstr "Искључиво администратор може обрисати стандардни DocType." + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "Искључиво додељени корисник може завршити овај задатак." + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +msgid "Only {0} emailed reports are allowed per user." +msgstr "Дозвољено је искључиво {0} извештаја послатих путем имејла по кориснику." + +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "Упс! Дошло је до грешке." + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Open" +msgstr "Отворено" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "Отвори" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "Отвори брзу претрагу" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "Отвори комуникацију" + +#: frappe/templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "Отвори документ" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "Отвори документа" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "Отвори помоћ" + +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Open Reference Document" +msgstr "Отвори референтни документ" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "Отвори подешавања" + +#: frappe/public/js/frappe/ui/toolbar/about.js: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 "Отвори URL у новој картици" + +#. Description of the 'Quick Entry' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "Отвори дијалог са обавезним пољима за брзо креирање новог записа. Дијалог ће бити приказан само уколико постоји бар једно обавезно поље." + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "Отвори модул или алат" + +#: frappe/public/js/frappe/ui/keyboard.js: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 "Отворене ставке" + +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "Отвори референтни документ" + +#: frappe/www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "Отвори апликацију за аутентификацију на свом телефону." + +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js: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 "Отвори {0}" + +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "OpenID Configuration" +msgstr "OpenID конфигурација" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "OpenLDAP" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "Отворено" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "Операција" + +#: frappe/utils/data.py:2117 +msgid "Operator must be one of {0}" +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 "Оптимизуј" + +#: frappe/core/doctype/file/file.js:105 +msgid "Optimizing image..." +msgstr "Оптимизација слике..." + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "Опција 1" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "Опција 2" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "Опција 3" + +#: frappe/core/doctype/doctype/doctype.py:1638 +msgid "Option {0} for field {1} is not a child table" +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 "Опционо: Увек шаљите на ове ИД-ове. Свака имејл адреса у новом реду" + +#. Description of the 'Condition' (Code) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Optional: The alert will be sent if this expression is true" +msgstr "Опционо: Упозорење ће бити послато уколико је овај израз тачан" + +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (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 "Опције" + +#: 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 "Опција 'Динамички линк' мора да показује на друго линк поље чије су опције 'DocType'" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "Помоћ за опције" + +#: frappe/core/doctype/doctype/doctype.py:1660 +msgid "Options for Rating field can range from 3 to 10" +msgstr "Опције за поље оцењивања могу бити у распону од 3 до 10" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "Опције за одабир. Свака опција у новом реду." + +#: frappe/core/doctype/doctype/doctype.py:1383 +msgid "Options for {0} must be set before setting the default value." +msgstr "Опције за {0} морају бити подешене пре него што се постави подразумевана вредност." + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "Опције су неопходне за поље {0} врсте {1}" + +#: frappe/model/base_document.py:871 +msgid "Options not set for link field {0}" +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 "Наранџаста" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "Редослед" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "Историја организације" + +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History Heading" +msgstr "Наслов историје организације" + +#: frappe/public/js/frappe/form/print_utils.js:28 +msgid "Orientation" +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' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 +msgid "Other" +msgstr "Остало" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "Излазни" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing (SMTP) Settings" +msgstr "Подешавање излазне поште (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 "Излазни имејлови (последњих 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 "Излазни сервер" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "Подешавање излазне поште" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "Налог за излазну пошту није исправан" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "Outlook.com" + +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Output" +msgstr "Резултат" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "Преглед" + +#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 +msgid "Owner" +msgstr "Власник" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "PATCH" +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:1744 +msgid "PDF" +msgstr "PDF" + +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +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 "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 "Висина 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 "Величина 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 "Ширина 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 "Подешавање PDF" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "Генерисање PDF-а није успело" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "Генерисање PDF-а није успело због неисправних линкова ка сликама" + +#: frappe/printing/page/print/print.js:616 +msgid "PDF generation may not work as expected." +msgstr "Генерисање PDF-а можда неће радити како је очекивано." + +#: frappe/printing/page/print/print.js:534 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "Штампање PDF-а путем опције \"Необрађена штампа\" није подржано." + +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "PID" +msgstr "PID" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "POST" +msgstr "POST" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "PUT" +msgstr "PUT" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 +msgid "Package" +msgstr "Пакет" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json +msgid "Package Import" +msgstr "Увоз пакета" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "Назив пакета" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "Издање пакета" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages" +msgstr "Пакети" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "Пакети су мале апликације (колекције дефиниција модула), које се могу креирати, увозити или објављивати директно из корисничког интерфејса" + +#. Label of the page (Link) field in DocType 'Custom Role' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Page" +msgstr "Страница" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Page Break" +msgstr "Прелом странице" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Builder" +msgstr "Уређивач страница" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "Блокови за изградњу странице" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "HTML странице" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "Висина странице (у мм)" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "Маргине странице" + +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "Назив странице" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 +msgid "Page Number" +msgstr "Број странице" + +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "Путања странице" + +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" +msgstr "Подешавање странице" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "Пречице за страницу" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "Величина странице" + +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Page Title" +msgstr "Наслов странице" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "Ширина странице (у мм)" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "Страница је истекла!" + +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 +msgid "Page height and width cannot be zero" +msgstr "Висина и ширина странице не могу бити нула" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "Страница није пронађена" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "Страница која ће бити приказана на веб-сајту\n" + +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "Страна {0} од {1}" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "Параметар" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "Матични" + +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Parent DocType" +msgstr "Матични 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 "Матична врста документа" + +#: frappe/desk/doctype/number_card/number_card.py:65 +msgid "Parent Document Type is required to create a number card" +msgstr "Матична врста документа је неопходна за креирање бројчане картице" + +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Element Selector" +msgstr "Селектор матичног елемента" + +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "Матично поље" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:933 +msgid "Parent Field (Tree)" +msgstr "Матично поље (стабло)" + +#: frappe/core/doctype/doctype/doctype.py:939 +msgid "Parent Field must be a valid fieldname" +msgstr "Матично поље мора бити важећи назив поља" + +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Parent Label" +msgstr "Матична ознака" + +#: frappe/core/doctype/doctype/doctype.py:1197 +msgid "Parent Missing" +msgstr "Матични ентитет недостаје" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "Матична страница" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "Матична табела" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "Матична врста документа је неопходна за креирање графикона на почетној страници" + +#: frappe/core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "Матични означава назив документа у који ће се подаци додати." + +#: frappe/public/js/frappe/ui/group_by/group_by.js: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 "Матично поље није наведено у {0}: {1}" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "Матична врста, матични ентитет и матично поље су неопходни за унос зависног записа" + +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Partial" +msgstr "Делимично" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "Делимичан успех" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "Делимично послато" + +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json +msgid "Participants" +msgstr "Учесници" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "Прошло" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "Пасиван" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js: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 "Лозинка" + +#: frappe/core/doctype/user/user.py:1081 +msgid "Password Email Sent" +msgstr "Имејл са лозинком послат" + +#: frappe/core/doctype/user/user.py:458 +msgid "Password Reset" +msgstr "Ресетовање лозинке" + +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Password Reset Link Generation Limit" +msgstr "Ограничење за генерисање линкова за ресетовање лозинке" + +#: frappe/public/js/frappe/form/grid_row.js:880 +msgid "Password cannot be filtered" +msgstr "Лозинка се не може филтрирати" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "Лозинка је успешно промењена." + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "Лозинка за основни DN" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "Лозинка је обавезна или изаберите Чека лозинку" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "Лозинка није унета у имејл налогу" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "Лозинка није пронађена за {0} {1} {2}" + +#: frappe/core/doctype/user/user.py:1080 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}" + +#: frappe/www/update-password.html:166 +msgid "Password set" +msgstr "Лозинка постављена" + +#: frappe/auth.py:258 +msgid "Password size exceeded the maximum allowed size" +msgstr "Величина лозинке премашује дозвољену границу" + +#: frappe/core/doctype/user/user.py:871 +msgid "Password size exceeded the maximum allowed size." +msgstr "Величине лозинке премашује дозвољену границу." + +#: frappe/www/update-password.html:80 +msgid "Passwords do not match" +msgstr "Лозинке се не подударају" + +#: frappe/core/doctype/user/user.js:205 +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 "Налепи" + +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch" +msgstr "Закрпа" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "Евиденција закрпа" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "Врста закрпе {} није пронађен у патцхес.тxт" + +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "Путања" + +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to CA Certs File" +msgstr "Путања до фајла са CA сертификатима" + +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to Server Certificate" +msgstr "Путања до сервер сертификата" + +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to private Key File" +msgstr "Путања до фајла са приватним кључем" + +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "Путања {0} није важећа путања" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Payload Count" +msgstr "Број пренетих података" + +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "Највећа искоришћеност меморије" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType '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 "На чекању" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Approval" +msgstr "На чекању за одобрење" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "На чекању за имејлове" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "Задаци на чекању" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +msgstr "На чекању за верификацију" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Percent" +msgstr "Проценат" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "Проценат" + +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Period" +msgstr "Период" + +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Perm Level" +msgstr "Ниво дозволе" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "Трајно" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "Трајно отказати {0}?" + +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "Трајно одбацити {0}?" + +#: frappe/public/js/frappe/form/form.js:861 +msgid "Permanently Submit {0}?" +msgstr "Трајно поднети {0}?" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "Трајно обрисати {0}?" + +#: frappe/core/doctype/user_type/user_type.py:84 +msgid "Permission Error" +msgstr "Грешка у дозволама" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "Преглед приступних дозвола" + +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Permission Level" +msgstr "Ниво дозвола" + +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "Нивои дозвола" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "Евиденција дозвола" + +#. Label of a shortcut in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "Менаџер дозвола" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "Упит за дозволе" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "Правила дозвола" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +msgstr "Врста дозволе" + +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' +#. Label of a Card Break in the Users Workspace +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js: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 "Дозволе" + +#: 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 "Дозволе се постављају на улоге и врсте докумената (који се називају 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 "Дозволе на вишим нивоима су дозволе на нивоу поља. Свако поље има додељени ниво дозволе, а правила дефинисана тим нивоима примењују се на ово поље. Ово је корисно у случају када желите да сакријете или поставите одређено поље као само за читање за одређене улоге." + +#: 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 "Дозволе на нивоу 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 "Дозволе се примењују корисницима на основу улога које су им додељене." + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "Дозвољена документа за корисника" + +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Permitted Roles" +msgstr "Дозвољене улоге" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "Лична" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "Захтев за брисање личних података" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "Корак у брисању личних података" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "Захтев за преузимање личних података" + +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/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 "Телефон" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "Телефон бр." + +#: frappe/utils/__init__.py:121 +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:1579 +#: frappe/public/js/frappe/views/reports/report_view.js:1582 +msgid "Pick Columns" +msgstr "Изаберите колоне" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "Кружни" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +msgstr "ПИН код" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Pink" +msgstr "Розе" + +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" +msgstr "Резервисани текст" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "Обични текст" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "Постројење" + +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "Молимо Вас да ауторизујете OAuth за имејл налог {0}" + +#: frappe/email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "Молимо Вас да ауторизујете OAuth за имејл налог {}" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "Молимо Вас да дуплирате ову тему веб-сајта да бисте је прилагодили." + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "Молимо Вас да инсталирате ldap3 библиотеку путем пип-а да бисте користили ldap функционалност." + +#: frappe/public/js/frappe/views/reports/query_report.js:307 +msgid "Please Set Chart" +msgstr "Молимо Вас да поставите графикон" + +#: frappe/core/doctype/sms_settings/sms_settings.py:84 +msgid "Please Update SMS Settings" +msgstr "Молимо Вас да ажурирате SMS подешавања" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +msgid "Please add a subject to your email" +msgstr "Молимо Вас да додате наслов у Ваш имејл" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "Молимо Вас да додате валидан коментар." + +#: frappe/core/doctype/user/user.py:1063 +msgid "Please ask your administrator to verify your sign-up" +msgstr "Молимо Вас да затражите од администратора да верификује Вашу регистрацију" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "Молимо Вас да прво приложите фајл." + +#: frappe/printing/doctype/letter_head/letter_head.py:76 +msgid "Please attach an image file to set HTML for Footer." +msgstr "Молимо Вас да приложите слику како бисте поставили HTML за подножје." + +#: frappe/printing/doctype/letter_head/letter_head.py:64 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "Молимо Вас да приложите слику како бисте поставили HTML за заглавље." + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "Молимо Вас да приложите пакет" + +#: frappe/integrations/doctype/connected_app/connected_app.js:19 +msgid "Please check OpenID Configuration URL" +msgstr "Молимо Вас да проверите URL за OpenID конфигурацију" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "Молимо Вас да проверите вредности филтера постављене за графикон за контролној табли: {}" + +#: 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:1061 +msgid "Please check your email for verification" +msgstr "Молимо Вас да проверите свој имејл за верификацију" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "Молимо Вас да проверите своје имејл креденцијале за пријављивање." + +#: frappe/twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "Молимо Вас да проверите своју регистровану имејл адресу за упутства како да наставите. Немојте затварати овај прозор јер ћете морати да се вратите на њега." + +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "Молимо Вас да кликнете на уреди у радном простору за најбоље резултате" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "Молимо Вас да кликнете на 'Извоз редова који садрже грешку', исправите грешке и поново увезете." + +#: frappe/twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "Молимо Вас да кликнете на следећи линк и пратите упутства на страници. {0}" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "Молимо Вас да кликнете на следећи линк да бисте поставили нову лозинку" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "Молимо Вас да потврдите своју радњу како бисте {0} овај документ." + +#: 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 "Молимо Вас да прво креирате картицу" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "Молимо Вас да прво креирате графикон" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "Молимо Вас да обришете поље из {0} или да додате неопходни доцтyпе." + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "Молимо Вас да не мењате наслове шаблона." + +#: frappe/printing/doctype/print_format/print_format.js:18 +msgid "Please duplicate this to make changes" +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 "Молимо Вас да омогућите барем један кључ за пријављивање путем друштвених мрежа или LDAP или пријављивање путем имејл линка пре него што онемогућите пријаву помоћу корисничког имена и лозинке." + +#: 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 "Молимо Вас да омогућите искачуће прозоре" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "Молимо Вас да омогућите искачуће прозоре у Вашем интернет претраживачу" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "Молимо Вас да омогућите {} пре него што наставите." + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "Молимо Вас да се уверите да Ваш профил садржи имејл адресу" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +msgid "Please enter Access Token URL" +msgstr "Молимо Вас да унесте URL токен за приступ" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +msgid "Please enter Authorize URL" +msgstr "Молимо Вас да унесете URL ауторизацију" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +msgid "Please enter Base URL" +msgstr "Молимо Вас да унесете основни URL" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +msgid "Please enter Client ID before social login is enabled" +msgstr "Молимо Вас да унесете клијентски ИД пре него што је пријављивање путем друштвених мрежа омогућено" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +msgid "Please enter Client Secret before social login is enabled" +msgstr "Молимо Вас да унесте тајну клијента пре него што је пријављивање путем друштвених мрежа омогућено" + +#: frappe/integrations/doctype/connected_app/connected_app.js:8 +msgid "Please enter OpenID Configuration URL" +msgstr "Молимо Вас да унесете URL за OpenID конфигурацију" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +msgid "Please enter Redirect URL" +msgstr "Молимо Вас да унесете URL за преусмеравање" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "Молимо Вас да унесете важећу имејл адресу." + +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "Молимо Вас да унесете и своју имејл адресу и поруку како бисмо могли да Вам се јавимо! Хвала Вам!" + +#: frappe/www/update-password.html: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 "Молимо Вас да унесете лозинку за: {0}" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "Молимо Вас да унесете важеће бројеве мобилних телефона" + +#: frappe/www/update-password.html:117 +msgid "Please enter your new password." +msgstr "Молимо Вас да унесете своју нову лозинку." + +#: frappe/www/update-password.html:110 +msgid "Please enter your old password." +msgstr "Молимо Вас да унесете своју стару лозинку." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +msgid "Please find attached {0}: {1}" +msgstr "У прилогу можете пронаћи {0}: {1}" + +#: frappe/templates/includes/comments/comments.py:31 +msgid "Please login to post a comment." +msgstr "Молимо Вас да се пријавите како бисте оставили коментар." + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "Молимо Вас да се уверите да документи референтне комуникације нису кружно повезани." + +#: frappe/model/document.py:986 +msgid "Please refresh to get the latest document." +msgstr "Молимо Вас да освежите како бисте добили најновији документ." + +#: frappe/printing/page/print/print.js:535 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "Молимо Вас да уклоните мапирање штампача у подешавањима штампе и покушате поново." + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "Молимо Вас да сачувате пре него што приложите." + +#: frappe/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 "Молимо Вас да сачувате документ пре додељивања" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "Молимо Вас да сачувате документ пре уклањања додељивања" + +#: frappe/public/js/frappe/views/reports/report_view.js:1709 +msgid "Please save the report first" +msgstr "Молимо Вас да прво сачувате извештај" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "Молимо Вас да сачувате да бисте уредили овај шаблон." + +#: frappe/printing/doctype/print_format/print_format.js:30 +msgid "Please select DocType first" +msgstr "Молимо Вас да прво изаберете DocType" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "Молимо Вас да прво изаберете врсту ентитета" + +#: frappe/core/doctype/system_settings/system_settings.py:113 +msgid "Please select Minimum Password Score" +msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке" + +#: frappe/public/js/frappe/views/reports/query_report.js:1183 +msgid "Please select X and Y fields" +msgstr "Молимо Вас да изаберете X и Y поља" + +#: frappe/utils/__init__.py:128 +msgid "Please select a country code for field {1}." +msgstr "Молимо Вас да изаберете шифру државе за поље {1}." + +#: 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 "Молим Вас да изаберете фајл или URL" + +#: frappe/model/rename_doc.py:685 +msgid "Please select a valid csv file with data" +msgstr "Молимо Вас да изаберете важећи цсв фајл са подацима" + +#: frappe/utils/data.py:299 +msgid "Please select a valid date filter" +msgstr "Молимо Вас да изаберете важећи филтер да датум" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "Молимо Вас да изаберете примењиве DocType-ове" + +#: frappe/model/db_query.py:1141 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "Молимо Вас да прво изаберете префикс" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "Молимо Вас да изаберете врсту документа." + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Please select the LDAP Directory being used" +msgstr "Молимо Вас да изаберете LDAP директоријум који се користи" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "Молимо Вас да изаберете {0}" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "Молимо Вас да поставите имејл адресу" + +#: frappe/printing/page/print/print.js:549 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе" + +#: frappe/public/js/frappe/views/reports/query_report.js:1406 +msgid "Please set filters" +msgstr "Молимо Вас да поставите филтере" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +msgid "Please set filters value in Report Filter table." +msgstr "Молимо Вас да поставите вредности филтера у табели филтер извештаја." + +#: frappe/model/naming.py:572 +msgid "Please set the document name" +msgstr "Молимо Вас да поставите назив документа" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "Молимо Вас да прво поставите следећа документа у овој контролној табли као стандардна." + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "Молимо Вас да поставите серију која ће се користити." + +#: frappe/core/doctype/system_settings/system_settings.py:126 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "Молимо Вас да поставите SMS пре него што га поставите као метод аутентификације, путем SMS подешавања" + +#: 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 "Молимо Вас да поставите подразумевани излазни имејл налог из Подешавања > Имејл налог" + +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "Молимо Вас да поставите подразумевани излазни имејл налог из Алати > Имејл налог" + +#: frappe/public/js/frappe/model/model.js:774 +msgid "Please specify" +msgstr "Молимо Вас да наведете" + +#: frappe/permissions.py:783 +msgid "Please specify a valid parent DocType for {0}" +msgstr "Молимо Вас да наведете важећи матични DocType за {0}" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "Молимо Вас да наведете најмање 10 минута због учесталости покретања планера" + +#: 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 "Молимо Вас да наведете које поље за датум мора бити проверено" + +#: 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 "Молимо Вас да наведете које поље за вредност мора бити проверено" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "Молимо Вас да покушате поново" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "Молимо Вас да ажурирате {} пре него што наставите." + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Please use a valid LDAP search filter" +msgstr "Молимо Вас да користите важећи 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 за више информација." + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "Периодично испитивање" + +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover Element" +msgstr "Елемент искачуће поруке" + +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover or Modal Description" +msgstr "Опис искачуће поруке или модала" + +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Port" +msgstr "Порт" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "Мени портала" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "Ставка менија портала" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json +msgid "Portal Settings" +msgstr "Подешавање портала" + +#: frappe/public/js/frappe/form/print_utils.js:31 +msgid "Portrait" +msgstr "Портрет" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "Позиција" + +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "Објави" + +#: frappe/templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "Објави овде, наши ментори ће ти помоћи." + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "Адреса за пријем поште" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal Code" +msgstr "Поштански број" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "Време објаве" + +#: frappe/website/doctype/blog_post/blog_post.py:264 +msgid "Posts by {0}" +msgstr "Објаве корисника {0}" + +#: frappe/website/doctype/blog_post/blog_post.py:256 +msgid "Posts filed under {0}" +msgstr "Објаве у категорији {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' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Precision" +msgstr "Прецизност" + +#: frappe/core/doctype/doctype/doctype.py:1400 +msgid "Precision should be between 1 and 6" +msgstr "Прецизност треба да буде између 1 и 6" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "Предвидиве замене попут '@' уместо 'а' нису од велике помоћи." + +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "Без изјашњења" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Billing Address" +msgstr "Преферирана адреса за фактурисање" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "Преферирана адреса за испоруку" + +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Prefix" +msgstr "Префикс" + +#. Name of a DocType +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 +msgid "Prepared Report" +msgstr "Припремљен извештај" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "Аналитика припремљених извештаја" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "Корисник припремљеног извештаја" + +#: frappe/desk/query_report.py:306 +msgid "Prepared report render failed" +msgstr "Приказ припремљеног извештаја није успео" + +#: frappe/public/js/frappe/views/reports/query_report.js:472 +msgid "Preparing Report" +msgstr "Припрема извештаја" + +#: frappe/public/js/frappe/views/communication.js:428 +msgid "Prepend the template to the email message" +msgstr "Додај шаблон на почетак имејл поруке" + +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "Притисните тастер Alt да бисте активирали додатне пречице у менију и бочној траци" + +#: frappe/public/js/frappe/list/list_filter.js:141 +msgid "Press Enter to save" +msgstr "Притисните Enter да сачувате" + +#. 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 "Преглед" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +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 "Преглед слике" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "Преглед поруке" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "Режим прегледа" + +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Preview of generated names" +msgstr "Преглед генерисаних назива" + +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "Преглед на {0}" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "Врста прегледа" + +#: 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' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "Примарна" + +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "Примарна адреса" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Primary Color" +msgstr "Примарна боја" + +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "Примарни контакт" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "Примарни имејл" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "Примарни број телефона" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "Примарни телефон" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "Примарни кључ за DocType {0} не може бити промењен јер садржи постојеће вредности." + +#. 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 "Штампа" + +#: frappe/public/js/frappe/list/list_view.js:2019 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "Штампа" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "Штампа документа" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js: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 "Формат штампе" + +#. Label of a Link in the Tools Workspace +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "Алат за креирање формата штампе" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "Алат за креирање формата штампе (Ново)" + +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Builder Beta" +msgstr "Алат за креирање формата штампе Бета" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "Грешка у формату за штампу" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "Шаблон поља формата за штампу" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Help" +msgstr "Помоћ за формат штампе" + +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Type" +msgstr "Врста формата штампе" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "Формат штампе {0} је онемогућен" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "Наслов штампе" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" +msgstr "Сакриј штампу" + +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide If No Value" +msgstr "Сакриј штампу уколико нема вредности" + +#: frappe/public/js/frappe/views/communication.js:165 +msgid "Print Language" +msgstr "Језик штампе" + +#: frappe/public/js/frappe/form/print_utils.js:197 +msgid "Print Sent to the printer!" +msgstr "Штампа је послата на штампач!" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "Сервер за штампу" + +#. Label of a Link in the Tools Workspace +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js: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 the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' +#. Name of a DocType +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "Стил штампе" + +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style Name" +msgstr "Назив стила штампе" + +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Style Preview" +msgstr "Преглед стила штампе" + +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width" +msgstr "Ширина штампе" + +#. Description of the 'Print Width' (Data) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width of the field, if the field is a column in a table" +msgstr "Ширина поља за штампу, уколико је поље колона у табели" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "Штампа документа" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "Штампа са заглављем" + +#: frappe/printing/page/print/print.js:830 +msgid "Printer" +msgstr "Штампач" + +#: frappe/printing/page/print/print.js:807 +msgid "Printer Mapping" +msgstr "Мапирање штампача" + +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Printer Name" +msgstr "Назив штампача" + +#: frappe/printing/page/print/print.js:799 +msgid "Printer Settings" +msgstr "Подешавање штампача" + +#: frappe/printing/page/print/print.js:548 +msgid "Printer mapping not set." +msgstr "Мапирање штампача није подешено." + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "Штампање" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "Штампање неуспешно" + +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json +msgid "Priority" +msgstr "Приоритет" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 +msgid "Private" +msgstr "Приватно" + +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "Приватни фајлови (МБ)" + +#. 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 "Савет: Додаје 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:
CSV
JPG
PNG" +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 "Провајдер" + +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "Назив провајдера" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "Јавни" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "Јавни фајлови (МБ)" + +#. 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 "Објави" + +#. 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' +#. 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 "Објављено" + +#. Label of the published_on (Date) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Published On" +msgstr "Објављено на" + +#: frappe/website/doctype/blog_post/templates/blog_post.html:59 +msgid "Published on" +msgstr "Објављено на" + +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Publishing Dates" +msgstr "Датуми објављивања" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +msgstr "Повуци имејлове" + +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Pull from Google Calendar" +msgstr "Повуци из 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 "Повуци из 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 "Повучено из 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 "Повучено из Google Contacts" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "Повлачење имејлова..." + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "Менаџер набавке" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "Главни менџер за набавку" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "Корисник набавке" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Purple" +msgstr "Љубичасто" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "Подешавање пусх обавештења" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "Пусх обавештења" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Push to Google Calendar" +msgstr "Пошаљи у 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 "Пошаљи у Google Contacts" + +#: 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' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Python" +msgstr "Python" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "QR код" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "QR код за верификацију пријављивања" + +#: frappe/public/js/frappe/form/print_utils.js:206 +msgid "QZ Tray Failed: " +msgstr "QZ Tray неуспешно: " + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "Квартално" + +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json +msgid "Query" +msgstr "Упит" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +msgstr "Упит / Скрипта" + +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Query Options" +msgstr "Опције упита" + +#. Label of the query_parameters (Table) field in DocType 'Connected App' +#. Name of a DocType +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "Параметри упита" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "Извештај по упиту" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "Анализа упита завршена. Погледајте предложене индексе." + +#: frappe/utils/safe_exec.py:495 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "Упит мора бити врсте SELECT или read-only WITH type." + +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Queue" +msgstr "Ред" + +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "Ред преоптерећен" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "Статус реда" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue Type(s)" +msgstr "Врсте редова" + +#. Label of the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Queue in Background (BETA)" +msgstr "Ред у позадини (БЕТА)" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "Ред треба да буде један од {0}" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "Ред(ови)" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/email/doctype/newsletter/newsletter.js:208 +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Queued" +msgstr "У реду" + +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued At" +msgstr "У реду стављен" + +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "Стављено у ред од стране" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "У реду за подношење. Можете пратити напредак преко {0}." + +#: frappe/desk/page/backups/backups.py:96 +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} се ставља у ред за подношење" + +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Quick Entry" +msgstr "Брзи унос" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "Брза помоћ за подешавање дозвола" + +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Quick List Filter" +msgstr "Брзи филтер листе" + +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Quick Lists" +msgstr "Брза листа" + +#: frappe/public/js/frappe/views/reports/report_utils.js:304 +msgid "Quoting must be between 0 and 3" +msgstr "Број понуда мора бити између 0 и 3" + +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "RAW Information Log" +msgstr "Евиденција необрађених података" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "RQ Јоб" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "RQ Wоркер" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Random" +msgstr "Насумично" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "Опсег" + +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Rate Limiting" +msgstr "Ограничење протока" + +#. Label of the section_break_12 (Section Break) field in DocType 'Blog +#. Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json +msgid "Rate Limits" +msgstr "Ограничење протока" + +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "Ограничење учесталости пријављивања путем линка у имејлу" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Rating" +msgstr "Оцена" + +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:89 +msgid "Raw Commands" +msgstr "Необрађене команде" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "Необрађени имејл" + +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Raw Printing" +msgstr "Необрађено штампање" + +#: frappe/printing/page/print/print.js:165 +msgid "Raw Printing Setting" +msgstr "Подешавање необрађеног штампања" + +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "Подешавања необрађене штампе" + +#: frappe/desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "Поново покрени у конзоли" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +msgstr "Re:" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:600 +#: frappe/public/js/frappe/views/communication.js:364 +msgid "Re: {0}" +msgstr "Re: {0}" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Read" +msgstr "Прочитано" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only" +msgstr "Искључиво за читање" + +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only Depends On" +msgstr "Искључиво за читање зависи од" + +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Read Only Depends On (JS)" +msgstr "Искључиво за читање зависи од (JS)" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "Режим искључиво за читање" + +#. Label of the read_time (Int) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "Read Time" +msgstr "Време читања" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "Прочитао прималац" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "Прочитао прималац на" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "Режим читања" + +#: frappe/utils/safe_exec.py:95 +msgid "Read the documentation to know more" +msgstr "Прочитајте документацију за више информација" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +msgstr "Упутство" + +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "У реалном времену (SocketIO)" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "Разлог" + +#: frappe/public/js/frappe/views/reports/query_report.js:884 +msgid "Rebuild" +msgstr "Обнови" + +#: frappe/public/js/frappe/views/treeview.js:509 +msgid "Rebuild Tree" +msgstr "Обнови стабло" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "Обнављање стабла није подржано за {}" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "Примљено" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "Примљена је неважећа врста токена." + +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Document Field" +msgstr "Прималац по пољу документа" + +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Role" +msgstr "Прималац по улози" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "Параметар примаоца" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "Недавне године се лако наслућују." + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +msgid "Recents" +msgstr "Недавно" + +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Recipient" +msgstr "Прималац" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "Прималац је отказао претплату" + +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json +msgid "Recipients" +msgstr "Примаоци" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "Алат за снимање" + +#. Name of a DocType +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "Упит из алата за снимање" + +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "Предложени индекси из алата за снимање" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "Записи за следеће врсте докумената биће филтрирани" + +#: frappe/core/doctype/doctype/doctype.py:1608 +msgid "Recursive Fetch From" +msgstr "Рекурзивно преузимање из" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Red" +msgstr "Црвено" + +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Redirect HTTP Status" +msgstr "HTTP статус преусмеравања" + +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Redirect URI" +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 "URI за преусмеравање повезан са аутентификационом кодом" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "URI-јеви за преусмеравање" + +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Redirect URL" +msgstr "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' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +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 "Преусмеравања" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "Redis cache сервер није покренут. Молимо Вас да контактирате администратор / техничку подршку" + +#: frappe/public/js/frappe/form/toolbar.js:527 +msgid "Redo" +msgstr "Врати" + +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:535 +msgid "Redo last action" +msgstr "Врати последњу радњу" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +msgstr "Референтни DocType" + +#: frappe/desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "Референтни DocType и назив контролне табле не могу се користити истовремено." + +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "Референца" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "Датум референце" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "Време и датум референце" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +msgstr "Назив референтног документа" + +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Reference DocType" +msgstr "DocType референца" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "DocType референца и референтни назив су неопходни" + +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Docname" +msgstr "Назив референтног документа" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/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 "DocType референца" + +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Reference Document" +msgstr "Референтни документ" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Reference Document Name" +msgstr "Назив референтног документа" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (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 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 "Назив референце" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" +msgstr "Власник референце" + +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Reference Report" +msgstr "Референтни извештај" + +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json +msgid "Reference Type" +msgstr "Врста референце" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "Назив референце" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "Референца: {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 "Извор приступа" + +#: 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 "Освежи" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "Освежи све" + +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Refresh Google Sheet" +msgstr "Освежи 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 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Refresh Token" +msgstr "Токен за освежавање" + +#: frappe/public/js/frappe/list/list_view.js:531 +msgctxt "Document count in list view" +msgid "Refreshing" +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 "Освежавање..." + +#: frappe/core/doctype/user/user.py:1025 +msgid "Registered but disabled" +msgstr "Регистровано, али онемогућено" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json +msgid "Rejected" +msgstr "Одбијено" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "Недостаје 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 "Подешавање релеја" + +#. Group in Package's connections +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "Издање" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "Напомене о издању" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "Поновно повезивање" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "Поновно повезивање комуникације" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +msgstr "Поново повезано" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:444 +msgid "Reload" +msgstr "Поновно учитавање" + +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "Поново учитај фајл" + +#: frappe/public/js/frappe/list/base_list.js:249 +msgid "Reload List" +msgstr "Поново учитај листу" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "Поново учитај извештај" + +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Remember Last Selected Value" +msgstr "Запамти последњу изабрану вредност" + +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "Подсетник у" + +#: frappe/public/js/frappe/form/toolbar.js:476 +msgid "Remind Me" +msgstr "Подсети ме" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "Подсети ме за" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "Подсетник" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "Подсетник не може бити креиран у прошлости." + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "Подсетник постављен на {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 "Уклони" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "Уклони неуспешне задатке" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "Уклони поље" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "Уклони одељак" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "Уклони сва прилагођавања?" + +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "Уклони сва поље у колони" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 +msgid "Remove column" +msgstr "Уклони колону" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "Уклони поље" + +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "Уклони последњу колону" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "Уклони прелом странице" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "Уклони одељак" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "Уклони картицу" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "Уклоњено" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 +msgid "Rename" +msgstr "Преименуј" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "Преименуј назив поља" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "Преименуј {0}" + +#: frappe/core/doctype/doctype/doctype.py:698 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "Преименовани фајлови и замењени код у контролерима, молимо Вас проверите!" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "Приказивања ознака са леве стране и вредности са десне стране у овом одељку" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "Поново отвори" + +#: frappe/public/js/frappe/form/toolbar.js:544 +msgid "Repeat" +msgstr "Понови" + +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Repeat Header and Footer" +msgstr "Понови заглавље и подножје" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "Поновити на" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +msgstr "Понављати до" + +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Day" +msgstr "Поновити на дан" + +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Days" +msgstr "Поновити на дане" + +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Last Day of the Month" +msgstr "Поновити на последњи дан у месецу" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "Поновити овај догађај" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "Понављања као \"ааа\" се лако наслућују" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "Понављања као \"абцабцабц\" су само мало тежа за наслутити од \"абц\"" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 +msgid "Repeats {0}" +msgstr "Поновљено {0}" + +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "Репликација" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "Репликација у току..." + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "Репликација завршена." + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +msgstr "Одговорено" + +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Reply" +msgstr "Одговори" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "Одговори свима" + +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the report (Link) field in DocType 'Auto Email Report' +#: 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 "Извештај" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "Уређивач извештаја" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "Колона извештаја" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "Опис извештаја" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "Грешка у документу извештаја" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "Филтер извештаја" + +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Filters" +msgstr "Филтери извештаја" + +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Report Hide" +msgstr "Сакриј извештај" + +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Report Information" +msgstr "Информације о извештају" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "Менаџер извештавања" + +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1904 +msgid "Report Name" +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 "Назив извештаја, поље извештаја и функција су неопходни за креирање бројчане картице" + +#. 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 "Референтни DocType извештај" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Reference Doctype" +msgstr "Референтни DocType извештај" + +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Type" +msgstr "Врста извештаја" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "Приказ извештаја" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "Пријави грешку" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "Report cannot be set for Single types" +msgstr "Извештај се може бити постављен за појединачне врсте" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: frappe/desk/doctype/number_card/number_card.js:191 +msgid "Report has no data, please modify the filters or change the Report Name" +msgstr "Извештај нема података, молимо Вас да измените филтере или промените назив извештаја" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:186 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја" + +#: frappe/public/js/frappe/views/reports/query_report.js:1011 +msgid "Report initiated, click to view status" +msgstr "Извештај је покренут, кликните да бисте погледали статус" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Report limit reached" +msgstr "Достигнуто је ограничење извештаја" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "Извештај је истекао." + +#: frappe/desk/query_report.py:597 +msgid "Report updated successfully" +msgstr "Извештај је успешно ажуриран" + +#: 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:1942 +msgid "Report with more than 10 columns looks better in Landscape mode." +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 "Извештај {0}" + +#: frappe/desk/reportview.py:364 +msgid "Report {0} deleted" +msgstr "Извештај {0} је обрисан" + +#: frappe/desk/query_report.py:53 +msgid "Report {0} is disabled" +msgstr "Извештај {0} је онемогућен" + +#: frappe/desk/reportview.py:341 +msgid "Report {0} saved" +msgstr "Извештај {0} је сачуван" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "Извештај:" + +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js: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 the data (Code) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Data" +msgstr "Подаци захтева" + +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Description" +msgstr "Опис захтева" + +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Headers" +msgstr "Заглавље захтева" + +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "ИД захтева" + +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Request Limit" +msgstr "Лимит захтева" + +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "Метод захтева" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "Структура захтева" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "Захтев је истекао" + +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 +msgid "Request Timeout" +msgstr "Време за захтев је истекло" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "URL захтева" + +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Requested Numbers" +msgstr "Затражени бројеви" + +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "Захтева поуздани сертификат" + +#. Description of the 'LDAP search path for Groups' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "Захтева било који важећу FDN путању, нпр. ou=groups,dc=example,dc=com" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "Захтева било коју важећу FDN путању нпр. и.е. ou=users,dc=example,dc=com" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "Одговор: {0}" + +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "Ресетуј" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "Ресетуј све прилагођене поставке" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "Ресетуј измене" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "Ресетуј графикон" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "Ресетуј прилагођавања контролне табле" + +#: frappe/public/js/frappe/list/list_settings.js:230 +msgid "Reset Fields" +msgstr "Ресетуј поља" + +#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +msgid "Reset LDAP Password" +msgstr "Ресетуј LDAP лозинку" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "Ресетуј распоред" + +#: frappe/core/doctype/user/user.js:230 +msgid "Reset OTP Secret" +msgstr "Ресетуј тајну једнократне лозинке" + +#: 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 "Ресетуј лозинку" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "Ресетуј кључ за лозинку" + +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Link Expiry Duration" +msgstr "Ресетуј трајање линка за промену лозинке" + +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "Ресетуј шаблон за лозинку" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "Ресетуј дозволе за {0}?" + +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "Врати на подразумевано" + +#: frappe/public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "Ресетуј сортирање" + +#: frappe/public/js/frappe/form/grid_row.js:417 +msgid "Reset to default" +msgstr "Врати на подразумевано" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "Врати на подразумевана подешавања" + +#: frappe/templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "Ресетуј своју лозинку" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "Одговор" + +#. Label of the response_html (Code) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Response " +msgstr "Одговор " + +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "Врста одговора" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "Остатак дана" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "Врати" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "Врати оригиналне дозволе" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "Врати на подразумевана подешавања?" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "Враћено" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "Враћање обрисаног документа" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "Ограничи IP адресу" + +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json +msgid "Restrict To Domain" +msgstr "Ограничи на домен" + +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Restrict to Domain" +msgstr "Ограничи на домен" + +#. Description of the 'Restrict IP' (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" +msgstr "Ограничи корисника само са ове 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 "Ограничења" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "Резултат" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "Настави слање" + +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Retry" +msgstr "Поново покушај" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "Покушај поново слање" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "Врати се на екран за верификацију и унеси код приказан у твојој апликацији за аутентификацију" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "Обрни боју иконице" + +#: frappe/database/schema.py:161 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +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 "URI за опозив" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +msgstr "Опозови" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Revoked" +msgstr "Опозвано" + +#. Option for the 'Content Type' (Select) field in DocType '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 +msgid "Rich Text" +msgstr "Богати текст" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Right" +msgstr "Десно" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 +msgctxt "alignment" +msgid "Right" +msgstr "Десно" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Bottom" +msgstr "Десно доле" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Center" +msgstr "Десно центрирано" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Robots.txt" +msgstr "Robots.txt" + +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' +#. Name of a DocType +#. Label of the role (Link) field in DocType 'User Type' +#. Label of a Link in the Users Workspace +#. Label of a shortcut in the Users Workspace +#. Label of the role (Link) field in DocType 'Onboarding Permission' +#. Label of the role (Link) field in DocType 'ToDo' +#. Label of the role (Link) field in DocType 'OAuth Client Role' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Role" +msgstr "Улога" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "Улога 'Све' биће додељена корисницима система и веб-сајта." + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "Улога 'Корисник радне површине' биће додељена свим системским корисницима." + +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json +msgid "Role Name" +msgstr "Назив улоге" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json +msgid "Role Permission for Page and Report" +msgstr "Дозволе улоге за страницу и извештај" + +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:103 +msgid "Role Permissions" +msgstr "Дозволе улога" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "Менаџер дозвола улога" + +#: frappe/public/js/frappe/list/list_view.js:1788 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "Менаџер дозвола улога" + +#. Name of a DocType +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json +msgid "Role Profile" +msgstr "Профил улоге" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "Профили улога" + +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "Репликација улога" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Role and Level" +msgstr "Улога и ниво" + +#: frappe/core/doctype/user/user.py:364 +msgid "Role has been set as per the user type {0}" +msgstr "Улога је постављена према врсти корисника {0}" + +#. 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 "Улоге" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +msgstr "Улоге и дозволе" + +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles Assigned" +msgstr "Додељене улоге" + +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles HTML" +msgstr "HTML улогe" + +#. 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 улогe" + +#: 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 "Коренски ентитет {0} не може бити обрисан" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "Наизменично" + +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rounding Method" +msgstr "Метод заокруживања" + +#. Label of the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType '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 "Путања" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "Историја путање" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "Преусмеравање путање" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "Путања: Пример \"/app\"" + +#: frappe/model/base_document.py:852 frappe/model/document.py:777 +msgid "Row" +msgstr "Ред" + +#: 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 "Ред # {0}: Корисник који није администратор не може да постави улогу {1} у прилагођени доцтyпе" + +#: frappe/model/base_document.py:982 +msgid "Row #{0}:" +msgstr "Ред #{0}:" + +#: frappe/core/doctype/doctype/doctype.py:491 +msgid "Row #{}: Fieldname is required" +msgstr "Ред #{}: Назив поља је обавезан" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "Формат реда" + +#. Label of the row_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 the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "Назив реда" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "Број реда" + +#: frappe/core/doctype/version/version_view.html:68 +msgid "Row Values Changed" +msgstr "Вредности у реду су измењене" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "Ред {0}" + +#: frappe/custom/doctype/customize_form/customize_form.py:352 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +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 "Ред {0}: Није дозвољено омогућити дозволу при подношењу за стандардна поља" + +#. 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 "Редови додати" + +#. 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 "Редови уклоњени" + +#. 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 "Правило" + +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rule Conditions" +msgstr "Услови правила" + +#: frappe/permissions.py:662 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "Правило за ову врсту доцтyпе, улога, ниво дозволе и уколико власник већ постоји." + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "Правила" + +#. Description of the 'Transitions' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules defining transition of state in the workflow." +msgstr "Правила која дефинишу прелаз стања у радном току." + +#. Description of the 'Transition Rules' (Section Break) field in DocType +#. 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "Правила за транзицију између стања, као што су следеће стање и која улога сме да промени стање итд." + +#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rules with higher priority number will be applied first." +msgstr "Правила са већим бројем приоритета се примењује прва." + +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "Покрени задатке дневно искључиво уколико су неактивни (дана)" + +#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run scheduled jobs only if checked" +msgstr "Покрени заказане задатке само уколико су означени" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "Време извршавања у минутима" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "Време извршавања у секундама" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json +msgid "SMS" +msgstr "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 "SMS Gateway URL" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "Евиденција SMS порука" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +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 "SMS подешавање" + +#: frappe/core/doctype/sms_settings/sms_settings.py:110 +msgid "SMS sent successfully" +msgstr "SMS је успешно послат" + +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "SMS није послат. Молимо Вас да контактирате администратора." + +#: frappe/email/doctype/email_account/email_account.py:212 +msgid "SMTP Server is required" +msgstr "SMTP сервер је неопходан" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "SQL" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "SQL услови. Пример: status=\"Open\"" + +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "SQL Explain" +msgstr "SQL објашењење" + +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "SQL излаз" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "SQL упити" + +#. 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 "SSL/TLS режим" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "ПАЛЕТА БОЈА" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "Менаџер продаје" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "Главни менаџер продаје" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "Корисник продаје" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Salesforce" +msgstr "Salesforce" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "Поздрав" + +#: frappe/integrations/doctype/webhook/webhook.py:109 +msgid "Same Field is entered more than once" +msgstr "Исти унос је унет више пута" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "Узорак" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Saturday" +msgstr "Субота" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js: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 "Сачувај" + +#: frappe/core/doctype/user/user.js:339 +msgid "Save API Secret: {0}" +msgstr "Сачувај API тајну: {0}" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +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 "Сачувај као" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "Сачувај прилагођавања" + +#: frappe/public/js/frappe/views/reports/query_report.js:1899 +msgid "Save Report" +msgstr "Сачувај извештај" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +msgid "Save filters" +msgstr "Сачувај филтере" + +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Save on Completion" +msgstr "Сачувај при завршетку" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +msgstr "Сачувај документ." + +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "Сачувано" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "Сачувани филтери" + +#: frappe/public/js/frappe/list/list_settings.js:40 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "Чување" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "Чување" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +msgstr "Чување прилагођавања..." + +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "Чувањем овога ће се извести документ и повезани кораци као 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 "Чување..." + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "Скенирај QR код" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +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 "Заказано" + +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "Заказан у вези са" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job" +msgstr "Заказани задатак" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "Евиденција заказаних задатака" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Scheduled Job Type" +msgstr "Врста заказаног задатка" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "Евиденције заказаних задатака" + +#. 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} је ажурирано" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "Заказано за слање" + +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "Планер" + +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "Догађај планера" + +#: frappe/core/doctype/data_import/data_import.py:106 +msgid "Scheduler Inactive" +msgstr "Планер је неактиван" + +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "Статус планера" + +#: frappe/utils/scheduler.py:247 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "Планер се не може поново омогућити док је режим одржавања активан." + +#: frappe/core/doctype/data_import/data_import.py:106 +msgid "Scheduler is inactive. Cannot import data." +msgstr "Планер је неактиван. Нема могућности увоза података." + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "Планер: Активан" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "Планер: Неактиван" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "Опсег" + +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Scopes" +msgstr "Опсези" + +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Script" +msgstr "Скрипта" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "Менаџер скрипти" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "Извештај скрипте" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Type" +msgstr "Врста скрипте" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "Скрипта за повезивање са свим веб-страницама." + +#. Label of a Card Break in the Build Workspace +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Scripting" +msgstr "Програмирање" + +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "Програмирање / Стил" + +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "Скрипте" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 +msgid "Search" +msgstr "Претрага" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "Трака за претрагу" + +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Search Fields" +msgstr "Поља за претрагу" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "Помоћ за претрагу" + +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Search Priorities" +msgstr "Приоритети претраге" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "Резултати претраге" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "Претрага по називу фајла или екстензији" + +#: frappe/core/doctype/doctype/doctype.py:1467 +msgid "Search field {0} is not valid" +msgstr "Поље за претрагу {0} није важеће" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "Поља за претрагу" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "Претражи врсте поља..." + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "Претрага за било шта" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "Претрага за {0}" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "Претражи у врсти документа" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "Претражи или унеси команду ({0})" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "Својства претраге...." + +#: frappe/templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "Резултати претраге за" + +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 +msgid "Search..." +msgstr "Претрага..." + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "Претраживање ..." + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json +msgid "Section" +msgstr "Одељак" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "Прелом одељка" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "Наслов одељка" + +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Section ID" +msgstr "ИД одељка" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "Наслов одељка" + +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "Одељка мора имати најмање једну колону" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "Подешавања безбедности" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "Погледај све активности" + +#: frappe/public/js/frappe/views/reports/query_report.js:853 +msgid "See all past reports." +msgstr "Погледај све претходне извештаје." + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "Погледај на веб-сајту" + +#: frappe/website/doctype/web_form/templates/web_form.html:153 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "Погледај претходне одговоре" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "Погледај документ у {0}" + +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Seen" +msgstr "Виђено" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "Виђено од стране" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "Табела корисника који су видели" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:602 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "Изабери" + +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js: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 "Изабери прилоге" + +#: frappe/custom/doctype/client_script/client_script.js:25 +#: frappe/custom/doctype/client_script/client_script.js:28 +msgid "Select Child Table" +msgstr "Изабери зависну табелу" + +#: frappe/public/js/frappe/views/reports/report_view.js:383 +msgid "Select Column" +msgstr "Изабери колону" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "Select Columns" +msgstr "Изабери колоне" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "Изабери државу" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "Изабери валуту" + +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "Изабери контролу таблу" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "Изабери опсег датума" + +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "Изабери DocType" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "Изабери DocType" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "Изабери врсту документа" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "Изабери врсту документа или улогу за почетак." + +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "Изаберите врсте докумената како бисте поставили које корисничке дозволе се користе за ограничавање приступа." + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:835 +msgid "Select Field" +msgstr "Изабери поље" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "Изабери поље..." + +#: frappe/public/js/frappe/form/grid_row.js:473 +#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "Изабери поља" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "Изабери поља за унос" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "Изабери поља за ажурирање" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "Изабери филтере" + +#: frappe/desk/doctype/event/event.py:103 +msgid "Select Google Calendar to which event should be synced." +msgstr "Изабери Google Calendar за синхронизацију догађаја." + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "Изабери Google Contacts за синхронизацију контаката." + +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "Изабери групиши по...." + +#: frappe/public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "Изабери Канбан" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +msgstr "Изабери језик" + +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select List View" +msgstr "Изабери приказ листе" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "Изабери обавезно" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "Изабери модул" + +#: frappe/printing/page/print/print.js:175 +#: frappe/printing/page/print/print.js:585 +msgid "Select Network Printer" +msgstr "Изабери мрежни штампач" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "Изабери страницу" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:157 +msgid "Select Print Format" +msgstr "Изабери формат штампе" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "Изабери формат штампе за уређивање" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "Изабери извештај" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "Изаберу колоне табеле за {0}" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +msgstr "Изабери временску зону" + +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Select Transaction" +msgstr "Изабери трансакцију" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "Изабери радни ток" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +msgstr "Изабери радни простор" + +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "Изабери радне просторе" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "Прво изабери слику бренда." + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "Изабери DocType за креирање новог формата" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "Изабери поље да би уредио његова својства." + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group node first." +msgstr "Изабери групни чвор." + +#: frappe/core/doctype/doctype/doctype.py:1942 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "Изабери важеће поље пошиљаоца за креирање документа из имејла" + +#: frappe/core/doctype/doctype/doctype.py:1926 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "Изабери важеће поље за наслов за креирање документа из мејла" + +#: frappe/public/js/frappe/form/form_tour.js:321 +msgid "Select an Image" +msgstr "Изабери слику" + +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "Изабери апликацију за наставак" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "Изаберите постојећи формат да бисте га уредили или започните нови формат." + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "Изаберите слику ширине око 150 пиксела са транспарентном позадином за најбољи резултат." + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "Изабери бар један запис за штампање" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "Изабери бар 2 радње" + +#: frappe/public/js/frappe/list/list_view.js:1304 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "Изабери ставку из листе" + +#: frappe/public/js/frappe/list/list_view.js:1256 +#: frappe/public/js/frappe/list/list_view.js:1272 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "Изабери више ставки из листе" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "Изабери или превуци преко термина за креирање новог догађаја." + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "Изабери записе за доделу" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "Изабери записе за уклањање доделе" + +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "Изабери ознаку након које желиш да уметнеш ново поље." + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "Изабери две верзије за приказ разлика." + +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 +msgid "Select {0}" +msgstr "Изаберите {0}" + +#: frappe/model/workflow.py:117 +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 +msgid "Send" +msgstr "Пошаљи" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "Пошаљи" + +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "Пошаљи што је раније могуће, одређени број минута пре или после референтног датума и времена. Стварно слање може каснити до 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 "Пошаљи након" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send Alert On" +msgstr "Пошаљи обавештење на" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +msgstr "Пошаљи имејл упозорење" + +#. Label of the 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' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Email Print Attachments as PDF (Recommended)" +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 "Пошаљи имејл аутору" + +#. Label of the send_me_a_copy (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Me A Copy of Outgoing Emails" +msgstr "Пошаљи ми копију излазних имејлова" + +#. Label of the send_notification_to (Small Text) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send Notification to" +msgstr "Пошаљи обавештење ка" + +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Documents Followed By Me" +msgstr "Пошаљи обавештење за документа које пратим" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "Пошаљи обавештење за имејл преписке" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "Пошаљи сада" + +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Print as PDF" +msgstr "Пошаљи као PDF за штампу" + +#: frappe/public/js/frappe/views/communication.js:147 +msgid "Send Read Receipt" +msgstr "Пошаљи потврду о читању" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +msgstr "Пошаљи системско обавештење" + +#: 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" +msgstr "Пошаљи упозорење уколико се датум подудара са вредношћу овог поља" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "Пошаљи упозорење уколико се датум и време подударају са вредношћу овог поља" + +#. Description of the 'Value Changed' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +msgstr "Пошаљи упозорење уколико се вредност овог поља промени" + +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Send an email reminder in the morning" +msgstr "Пошаљи подсетник путем имејла ујутру" + +#. Description of the 'Days Before or After' (Int) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send days before or after the reference date" +msgstr "Пошаљи дана пре или после референтног датума" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "Пошаљи имејл када документ пређе у стање." + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "Пошаљи упите на ову имејл адресу" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "Пошаљи линк за пријаву" + +#: frappe/public/js/frappe/views/communication.js:141 +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" +msgstr "Пошаљи само уколико постоји неки податак" + +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send unsubscribe message in email" +msgstr "Пошаљи поруку за отказивање претплате у имејлу" + +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the 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 "Имејл пошиљаоца" + +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Email Field" +msgstr "Поље за имејл пошиљаоца" + +#: frappe/core/doctype/doctype/doctype.py:1945 +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 "Назив пошиљаоца" + +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Name Field" +msgstr "Поље за назив пошиљаоца" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "Сендгрид" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: 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' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/email/doctype/newsletter/newsletter.js:196 +#: frappe/email/doctype/newsletter/newsletter_list.js:5 +msgid "Sent" +msgstr "Послато" + +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "Назив датотеке за послату пошту" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent On" +msgstr "Послато на" + +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "Послата потврда о читању" + +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent To" +msgstr "Послато ка" + +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "Послато или примљено" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "Послати/Примљени имејл" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "Сепаратор" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "ИД секвенце" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "Листа серија за ову трансакцију" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "Серија ажурирана за {}" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "Бројач серије за {} је успешно ажуриран на {}" + +#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "Серија {0} је већ искоришћена у {1}" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "Серверска радња" + +#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "Серверска грешка" + +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Server IP" +msgstr "ИП адреса сервера" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json +msgid "Server Script" +msgstr "Серверска скрипта" + +#: frappe/utils/safe_exec.py:94 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије." + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +msgstr "Функционалност серверских скрипти није доступна на овом сајту." + +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "Сервер није успео да обради захтев због истовременог конфликтног захтева. Молимо Вас да покушате поново." + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "Сервер је био преоптерећен да обради захтев. Покушајте поново." + +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Service" +msgstr "Услуга" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "Подразумевана сесија" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "Подешавање подразумеване сесије" + +#. Label of a standard navbar item +#. Type: Action +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +msgid "Session Defaults" +msgstr "Подразумеване вредности сесије" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +msgid "Session Defaults Saved" +msgstr "Подразумеване вредности сесије су сачуване" + +#: frappe/app.py:353 +msgid "Session Expired" +msgstr "Сесија је истекла" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "Истек сесије (време неактивности)" + +#: frappe/core/doctype/system_settings/system_settings.py:120 +msgid "Session Expiry must be in format {0}" +msgstr "Истек сесије мора бити у формату {0}" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:295 +#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "Постави" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +msgstr "Постави" + +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Set Banner from Image" +msgstr "Постави банер из слике" + +#: frappe/public/js/frappe/views/reports/query_report.js:199 +msgid "Set Chart" +msgstr "Постави графикон" + +#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "Постави подразумевана опције за све графиконе на овој контролној табли (Пример: \"боје\": [\"#d1d8dd\", \"#ff5858\"])" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:367 +msgid "Set Dynamic Filters" +msgstr "Постави динамичке филтере" + +#: 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 "Постави филтере" + +#: 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 "Постави филтере за {0}" + +#: 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' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "Поставите опције серије именовања у Вашој трансакцији." + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "Постави нову лозинку" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "Постави број резервних копија" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "Постави лозинку" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "Постави дозволе" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "Постави својства" + +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Set Property After Alert" +msgstr "Постави својства након упозорења" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "Постави количину" + +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Set Role For" +msgstr "Постави улогу за" + +#: frappe/core/doctype/user/user.js:131 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "Постави корисничке дозволе" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "Постави вредност" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +msgid "Set all private" +msgstr "Постави све као приватно" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +msgid "Set all public" +msgstr "Постави све као јавно" + +#: frappe/printing/doctype/print_format/print_format.js:49 +msgid "Set as Default" +msgstr "Постави као подразумевано" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "Постави као подразумевано тему" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Set by user" +msgstr "Постављено од стране корисника" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "Овде поставите динамичке вредности филтера у JavaScript-у за неопходна поља." + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Set non-standard precision for a Float or Currency field" +msgstr "Поставите нестандардну прецизност за поље са децималним бројем или валутом" + +#. 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 "Постави величну у MB" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" +"
\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
" +msgstr "Овде поставите филтере. На пример:\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.
Consider saving the document before printing." +msgstr "Овај документ има несачуване измене које можда неће бити приказане у финалном PDF-у.
Препорука је да сачувате документ пре штампе." + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "Овај документ је већ измењен и не може поново бити измењен" + +#: frappe/model/document.py:473 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "Овај документ је тренутно закључан и чека на извршење. Покушајте поново касније." + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "Овај имејл је аутоматски генерисан" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "Ова функционалност није доступна јер недостају зависности.\n" +"\t\t\t\tМолимо Вас да контактирате систем менаџера да омогући ову опцију тиме што ће инсталирати pycups!" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "Ова функционалност је нова и још увек је експериментална" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "Ово поље ће се приказати само уколико поље дефинисано овде има неку вредност или уколико су услови тачни (примери):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" + +#: frappe/core/doctype/file/file.py:500 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "Овај фајл је приложен у заштићени документ и не може се обрисати." + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "Овај фајл је јаван и може му приступити било ко, чак и без пријављивања. Означите га као приватног да бисте ограничили приступ." + +#: frappe/core/doctype/file/file.js:20 +msgid "This file is public. It can be accessed without authentication." +msgstr "Овај фајл је јаван. Може му се приступити без аутентификације." + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "Овај образац је измењен након што је учитан" + +#: frappe/public/js/frappe/form/form.js:2257 +msgid "This form is not editable due to a Workflow." +msgstr "Овај образац није могуће уредити због радног тока." + +#. Description of the 'Is Default' (Check) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +msgid "This format is used if country specific format is not found" +msgstr "Овај формат се користи уколико специфичан формат за државу није пронађен" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "Овај провајдер геолокације још увек није подржан." + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "Ово се приказује изнад презентације." + +#: frappe/public/js/frappe/views/reports/query_report.js:2128 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај." + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "Ово је једна од 10 најчешћих лозинки." + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "Ово је једна од 100 најчешћих лозинки." + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "Ово је веома честа лозинка." + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "Ово је виртуелни доцтyпе и подаци се периодично бришу." + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +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 "Ово је пример Google SERP прегледа." + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "Ово је слично често коришћеној лозинки." + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "This is the number of the last created transaction with this prefix" +msgstr "Ово је број последње креиране трансакције са овим префиксом" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "Овај линк је већ активиран за верификацију." + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "Овај линк је неважећи или је истекао. Проверите да ли сте га исправно унели." + +#: frappe/printing/page/print/print.js:410 +msgid "This may get printed on multiple pages" +msgstr "Ово може бити одштампано на више страница" + +#: frappe/utils/goal.py:109 +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}." + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "Овај извештај је генерисан на {0}" + +#: frappe/public/js/frappe/views/reports/query_report.js:851 +msgid "This report was generated {0}." +msgstr "Овај извештај је генерисан {0}." + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 +msgid "This request has not yet been approved by the user." +msgstr "Овај захтев још увек није одобрен од стране корисника." + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "Ова страница је тренутно у режиму искључиво за читање, пуна функционалност ће ускоро бити враћена." + +#: frappe/core/doctype/doctype/doctype.js:73 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "Ова страница је покренута у развојном режиму. Све измене овде ће бити сачуване у коду." + +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "Овај софтвер је изграђен на основу бројних пакета отвореног кода." + +#: frappe/website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "Овај наслов ће бити коришћен као наслов веб-странице и у мета ознакама" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "Ова вредност је преузета из поља {1} објекта {0}" + +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view. " +msgstr "Ова вредност одређује максималан број редова који се могу приказати у приказу извештаја. " + +#: frappe/website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "Ово ће бити аутоматски генерисано када објавите страницу, али можете и сами унети путању уколико желите" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown in a modal after routing" +msgstr "Ово ће бити приказано у искачућем прозору након преусмеравања" + +#. Description of the 'Report Description' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "Ово ће бити приказано кориснику у дијалогу након преусмеравања ка извештају" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "Ово ће одјавити корисника {0} са свих других уређаја" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "Ово ће трајно обрисати Ваше податке." + +#: frappe/desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "Ово ће ресетовати обилазак и приказати је свим корисницима. Да ли сте сигурни?" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgstr "Ово ће тренутно прекинути задатак и може бити ризично, да ли сте сигурни? " + +#: frappe/core/doctype/user/user.py:1242 +msgid "Throttled" +msgstr "Загушено" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "URL Thumbnail " + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Thursday" +msgstr "Четвртак" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/newsletter/newsletter.js:118 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Time" +msgstr "Време" + +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time Format" +msgstr "Формат времена" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "Временски интервал" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "Временска серија" + +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series Based On" +msgstr "Временска серија заснована на" + +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Time Taken" +msgstr "Време трајања" + +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "Временски прозор (у секундама)" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of 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 "Временска зона" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "Временске зоне" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "Формат времена" + +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Time in Queries" +msgstr "Време у упитима" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "Време у секундама за задржавање слике QR кода на серверу. Минимум: 240" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "За креирање графикона на контролној табли неопходна је временска серија" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "Време {0} мора бити у формату: {1}" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "Истекло" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "Вечна ноћ" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "Временски редослед" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "DocType временског редоследа" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "Поље временског редоследа" + +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Timeline Links" +msgstr "Линкови временског редоследа" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "Назив временског редоследа" + +#: frappe/core/doctype/doctype/doctype.py:1538 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "Поље временског редоследа мора бити линк или динамички линк" + +#: frappe/core/doctype/doctype/doctype.py:1534 +msgid "Timeline field must be a valid fieldname" +msgstr "Поље временског редоследа мора бити важећи назив поља" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "Истек" + +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "Истек (у секундама)" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Timeseries" +msgstr "Временска серија" + +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "Временски опсег" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#. 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 "Временски жиг" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "Савет: Испробајте нови падајући мени за конзолу помоћу" + +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType '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 "Наслов" + +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Title Field" +msgstr "Поље за наслов" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "Префикс наслова" + +#: frappe/core/doctype/doctype/doctype.py:1475 +msgid "Title field must be a valid fieldname" +msgstr "Поље за наслов мора бити важећи назив поља" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "Наслов странице" + +#. Label of the recipients (Code) field in DocType 'Communication' +#. 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 "За" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "За" + +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "Датум завршетка" + +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To Date Field" +msgstr "Поље датума завршетка" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "За урадити" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
New {{ doc.doctype }} #{{ doc.name }}
" +msgstr "Да бисте додали динамички наслов, користите jinja ознаке као што су\n\n" +"
New {{ doc.doctype }} #{{ doc.name }}
" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
{{ doc.name }} Delivered
" +msgstr "Да бисте додали динамички наслов, користите jinja ознаке као што су\n\n" +"
{{ doc.name }} Delivered
" + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" +msgstr "Да бисте додали динамичке вредности из документа, користите jinja ознаке као што је\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +msgid "To allow more reports update limit in System Settings." +msgstr "Да бисте омогућили веће ограничење за ажурирање извештаја, подесите их у подешавању система." + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +msgstr "Примаоци и CC" + +#. 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 "Да би се опсег датума започео на почетку изабраног периода. На пример, уколико је изабрана 'Година', извештај ће почети од 1. јануара текућег године." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "Да бисте подесили аутоматско понављање, омогућите опцију 'Дозволи аутоматско понављање' у оквиру {0}." + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "Да бисте то омогућили пратите упутства на следећем линку: {0}" + +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +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 "Да бисте извршили извоз овог корака као JSON, повежите га у документу за уводну обуку и сачувајте документ." + +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "За генерисање лозинке кликните {0}" + +#: frappe/public/js/frappe/views/reports/query_report.js:852 +msgid "To get the updated report, click on {0}." +msgstr "За ажурирани извештај кликните на {0}." + +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" +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 "За штампање излаза користите 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" +"
\n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "Прати да ли је имејл отворен од стране примаоца.\n" +"
\n" +"Напомена: Уколико шаљете имејл на више адреса, сматраће се да је имејл отворен чак и уколико га прочита само један прималац." + +#. 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 "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 "Хеш трансакције" + +#. Name of a DocType +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Transaction Log" +msgstr "Евиденција трансакције" + +#. Name of a report +#: frappe/core/report/transaction_log_report/transaction_log_report.json +msgid "Transaction Log Report" +msgstr "Извештај о евиденцији трансакције" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "Трансродно" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "Својства транзиције" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transition Rules" +msgstr "Правила транзиције" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "Транизиција" + +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Translatable" +msgstr "Могуће превођење" + +#: frappe/public/js/frappe/views/reports/query_report.js:2183 +msgid "Translate Data" +msgstr "Преведи податке" + +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Translate Link Fields" +msgstr "Преведи поља са линковима" + +#: frappe/public/js/frappe/views/reports/report_view.js:1656 +msgid "Translate values" +msgstr "Преведи вредности" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "Преведи {0}" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "Преведени текст" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "Превод" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "Преводи" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Trash" +msgstr "Смеће" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Tree" +msgstr "Стабло" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "Приказ стабла" + +#. Description of the 'Is Tree' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Tree structures are implemented using Nested Set" +msgstr "Структуре стабла су имплементиране коришћењем угњеждених скупова" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "Приказ стабла није доступан за {0}" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "Метод окидача" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "Покрени главну радњу" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "Покрени кеширање" + +#. Description of the 'Trigger Method' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "Покрени код на методима као што су \"before_insert\", \"афтерупдате\", итд. (то ће зависити од изабраног DocType-а)" + +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "Скрати табелу" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 +msgid "Try Again" +msgstr "Покушајте поново" + +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Try a Naming Series" +msgstr "Испробајте серију именовања" + +#: frappe/printing/page/print/print.js:189 +#: frappe/printing/page/print/print.js:195 +msgid "Try the new Print Designer" +msgstr "Испробајте нови дизајнер штампе" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "Покушајте да избегнете поновљене речи и карактере" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "Користите сложеније шеме за тастатуру за више прелаза" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Tuesday" +msgstr "Уторак" + +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication" +msgstr "Двофакторска аутентификација" + +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication method" +msgstr "Метод двофакторске аутентификације" + +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js: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 "Врста" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "Напишите одговор / коментар" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "Напишите нешто у поље за претрагу да бисте претражили" + +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "Унесите наслов" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "Напишите Ваш одговор овде..." + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "Врста:" + +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "UI Tour" +msgstr "Обилазак корисничког интерфејса" + +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" +msgstr "UID" + +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDNEXT" +msgstr "UIDNEXT" + +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDVALIDITY" +msgstr "UIDVALIDITY" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "НЕПРОЧИТАНО" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "URI адресе за примање ауторизационог кода након што корисник дозволи приступ, као и за пријем одговора у случају неуспеха. Обично је то REST ендпоинт коју излаже клијентска апликација.\n" +"
нпр. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. 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" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "URL за документацију или помоћ" + +#: frappe/core/doctype/file/file.py:219 +msgid "URL must start with http:// or https://" +msgstr "URL мора почети са http:// или https://" + +#: frappe/website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +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 "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 извор" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "UUID" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "Престанак праћења документа {0}" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 +msgid "Unable to find DocType {0}" +msgstr "Није могуће пронаћи DocType {0}" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "Није могуће учитати камеру." + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "Није могуће учитати: {0}" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +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 "Није могуће прочитати формат фајла за {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 "Није могуће послати имејл због недостајућег имејл налога. Молимо Вас да поставите подразумевани налог у Подешавањима > Имејл налог" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "Није могуће ажурирати догађај" + +#: frappe/core/doctype/file/file.py:464 +msgid "Unable to write file format for {0}" +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 "Уклони додељивање услова" + +#: frappe/app.py:376 +msgid "Uncaught Exception" +msgstr "Неухваћени изузетак" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "Неизмењено" + +#: frappe/public/js/frappe/form/toolbar.js:515 +msgid "Undo" +msgstr "Поништи" + +#: frappe/public/js/frappe/form/toolbar.js:523 +msgid "Undo last action" +msgstr "Поништи последњу радњу" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:876 +msgid "Unfollow" +msgstr "Заустави праћење" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "Необрађени имејл" + +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" +msgstr "Необрађени имејлови" + +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Unique" +msgstr "Јединствено" + +#: 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 "Непозната колона: {0}" + +#: frappe/utils/data.py:1246 +msgid "Unknown Rounding Method: {}" +msgstr "Непознат метод заокруживања: {}" + +#: frappe/auth.py:316 +msgid "Unknown User" +msgstr "Непознати корисник" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "Непознато форматирање фајла. Покушано је коришћење: {0}" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +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 "Повуци са објаве" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Unread" +msgstr "Непрочитано" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "Послата обавештења о непрочитаним" + +#: frappe/utils/safe_exec.py:496 +msgid "Unsafe SQL query" +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 "Поништи одабир свега" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "Није подељено" + +#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +msgid "Unsubscribe" +msgstr "Отказивање претплате" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "Метода за отказивање претплате" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "Параметри отказивања претплате" + +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:122 +msgid "Unsubscribed" +msgstr "Отказана претплата" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "Колона без назива" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "Издвој" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "Издвојени {0} фајлови" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "Издвајање фајлова..." + +#: frappe/desk/doctype/event/event.py:269 +msgid "Upcoming Events for Today" +msgstr "Предстојећи догађаји за данас" + +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:411 +msgid "Update" +msgstr "Ажурирај" + +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Amendment Naming" +msgstr "Ажурирај назив измена" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +msgstr "Ажурирај постојеће записе" + +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Field" +msgstr "Ажурирај поље" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "Ажурирај редослед разрешења хоок-а" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "Ажурирај редослед" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "Ажурирај лозинку" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Counter" +msgstr "Ажурирај бројач серије" + +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Number" +msgstr "Ажурирај број серије" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "Ажурирај подешавања" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "Ажурирај преводе" + +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Value" +msgstr "Ажурирај вредност" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "Ажурирај из Frappe Cloud-а" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "Ажурирај {0} записа" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:427 +msgid "Updated" +msgstr "Ажурирано" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "Успешно ажурирано" + +#: 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 "Ажурирање" + +#: frappe/email/doctype/email_queue/email_queue_list.js:49 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "Ажурирање статуса имејл реда. Имејлови ће бити преузети у следећем заказаном покретању." + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "Ажурирање бројача може довести до конфликата у називима докумената уколико није правилно извршено" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "Ажурирање глобалних подешавања" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "Ажурирање опција за серију именовања" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "Ажурирање повезаних поља..." + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "Ажурирање {0}" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "Ажурирање {0} од {1}, {2}" + +#: 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 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 "Отпреми" + +#: 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 "Отпреми {0} фајлова" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +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 "Отпремљено на Google Дриве" + +#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgid "Use % for any non empty value." +msgstr "Користите % за било коју вредност која није празна." + +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use ASCII encoding for password" +msgstr "Користите 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 "Користите први дан периода" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Use HTML" +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 "Користите 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 the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +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 "Користити графикон из извештаја" + +#. 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 "Користите 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 "Користите 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 "Користите TLS" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "Користите неколико речи, избегавајте уобичајене фразе." + +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use different Email ID" +msgstr "Користите други ИД имејла" + +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "Користите уколико подразумевана подешавања не препознају тачно Ваше податке" + +#: frappe/model/db_query.py:435 +msgid "Use of function {0} in field is restricted" +msgstr "Коришћење функције {0} у пољу је ограничено" + +#: frappe/model/db_query.py:412 +msgid "Use of sub-query or function is restricted" +msgstr "Коришћење подупита или функције је ограничено" + +#: 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' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Use this fieldname to generate title" +msgstr "Користите назив овог поља за генерисање наслова" + +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "Користите ово, на пример, уколико све послате имејл поруке треба да буду послате и у архиву." + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Used OAuth" +msgstr "Коришћен OAuth" + +#. 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 +#. 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 +#. 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 "Корисник" + +#. Label of the user (Link) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "User " +msgstr "Корисник " + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "Корисник '{0}' већ има улогу '{1}'" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "Извештај о активности корисника" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "Извештај о активности корисника без сортирања" + +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "User Agent" +msgstr "Кориснички агент" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "Корисник не може да креира" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "Корисник не може да претражује" + +#: frappe/public/js/frappe/desk.js:554 +msgid "User Changed" +msgstr "Корисник промењен" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "Подразумеване вредности корисника" + +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Details" +msgstr "Детаљи о кориснику" + +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "Дозволе врсте документа корисника" + +#. Name of a DocType +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "Врста документа корисника" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "Прекорачен је број дозвољених врста докумената за корисника" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "Имејл корисника" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "Имејлови корисника" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "Група корисника" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "Члан групе корисника" + +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group Members" +msgstr "Чланови групе корисника" + +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User ID" +msgstr "ИД корисника" + +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "User ID Property" +msgstr "Својство ИД корисника" + +#. 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 "ИД корисника" + +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "User Id Field" +msgstr "Поље ИД корисника" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "Поље ИД корисника је обавезно за врсту корисника {0}" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "Слика корисника" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "Мени корисника" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "User Name" +msgstr "Корисничко име" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "Корисничка дозвола" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/report_view.js:1752 +msgid "User Permissions" +msgstr "Корисничке дозволе" + +#: frappe/public/js/frappe/list/list_view.js:1777 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "Корисничке дозволе" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "Корисничке дозволе се користе за ограничавање корисника на одређене записе." + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "Корисничке дозволе су успешно креиране" + +#. 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 +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "Профил улоге корисника" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "Корисник бира врсту документа" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "Подешавање корисника" + +#. Name of a DocType +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "Корисник пријављивања путем друштвених мрежа" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "Ознаке корисника" + +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "Врста корисника" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "Модул врсте корисника" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +msgstr "Корисник може да се пријави помоћу имејл адресе или броја мобилног телефона" + +#. Description of the 'Allow Login using User Name' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or User Name" +msgstr "Корисник може да се пријави помоћу имејл адресе или корисничког имена" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "Корисник не постоји." + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "Корисник нема дозволу да креира нови {0}" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "Корисник је обавезан за дељење" + +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "User must always select" +msgstr "Корисник мора увек да изабере" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "Корисничка дозвола већ постоји" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "Корисник са имејл адресом {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 "Корисник са имејлом: {0} не постоји у систему. Молимо Вас да контактирате 'Систем администратора' да креира корисника за Вас." + +#: frappe/core/doctype/user/user.py:537 +msgid "User {0} cannot be deleted" +msgstr "Корисник {0} не може бити обрисан" + +#: frappe/core/doctype/user/user.py:327 +msgid "User {0} cannot be disabled" +msgstr "Корисник {0} не може бити онемогућен" + +#: frappe/core/doctype/user/user.py:603 +msgid "User {0} cannot be renamed" +msgstr "Корисник {0} не може бити преименован" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "Корисник {0} нема приступ овом документу" + +#: frappe/permissions.py:162 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "Корисник {0} нема приступ DocType путем дозволе улоге за документ {1}" + +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +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 "Корисник {0} је затражио брисање података" + +#: frappe/core/doctype/user/user.py:1371 +msgid "User {0} impersonated as {1}" +msgstr "Корисник {0} се представља као {1}" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "Корисник {0} је онемогућен" + +#: frappe/sessions.py:242 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "Корисник {0} је онемогућен. Молимо Вас да контактирате систем менаџера." + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +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 "URI са подацима о кориснику" + +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 +msgid "Username" +msgstr "Корисничко име" + +#: frappe/core/doctype/user/user.py:689 +msgid "Username {0} already exists" +msgstr "Корисничко име {0} већ постоји" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Users" +msgstr "Корисници" + +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "Корисници могу брисати приложене фајлове само уколико је документ у нацрту или уколико је документ отказан и имају право да обришу документ." + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "Корисници са улогом: {0}:" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "Користи тему система за пребацивање између светлог и тамног режима" + +#: frappe/public/js/frappe/desk.js:154 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "Коришћење ове конзоле може омогућити нападачима да се представљају као Ви и да украду Ваше податке. Не уносите и не лепите код који не разумете." + +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "Искоришћеност" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Utilization %" +msgstr "Искоришћеност %" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "Важећи" + +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "Неопходан је важећи ИД за пријављивање." + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "Неопходни су важећи имејл и назив" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Validate Field" +msgstr "Валидирај поље" + +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "Валидирај Frappe подешавање имејла" + +#. 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 "Валидирај SSL сертификат" + +#: frappe/public/js/frappe/web_form/web_form.js:360 +msgid "Validation Error" +msgstr "Грешка при валидацији" + +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Validity" +msgstr "Важење" + +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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 "Вредност" + +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Value Based On" +msgstr "Вредност заснована на" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "Промена вредности" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "Вредност промењена" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "Вредност коју треба поставити" + +#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +msgid "Value cannot be changed for {0}" +msgstr "Вредност се не може променити за {0}" + +#: frappe/model/document.py:779 +msgid "Value cannot be negative for" +msgstr "Вредност не може бити негативна за" + +#: frappe/model/document.py:783 +msgid "Value cannot be negative for {0}: {1}" +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 "Вредност за поље избора може бити само 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 "Вредност за поље {0} у {1} је предугачка. Дужина треба да буде мања од {2} карактера" + +#: frappe/model/base_document.py:445 +msgid "Value for {0} cannot be a list" +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 "Вредност из овог поља биће постављена као рок у одељку за урадити" + +#: frappe/core/doctype/data_import/importer.py:714 +msgid "Value must be one of {0}" +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 "Вредност за валидацију" + +#: frappe/model/base_document.py:1124 +msgid "Value too big" +msgstr "Вредност је превелика" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +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 "Вредност {0} мора бити у важећем формату трајања: д х м с" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "Вредност {0} мора бити у {1} формату" + +#: frappe/core/doctype/version/version_view.html:8 +msgid "Values Changed" +msgstr "Промењене вредности" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "Вердана" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "Верификација" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +msgid "Verification Code" +msgstr "Верификациони код" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "Верификациони линк" + +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "Верификациони имејл са кодом није послат. Молимо Вас контактирајте администратора." + +#: frappe/twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "Верификациони код је послат на Вашу регистровану имејл адресу." + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "Верификовано" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "Верификуј" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "Верификуј лозинку" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "Верификација..." + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "Верзија" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "Верзија ажурирана" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "URL видео" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "Приказ" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "Прикажи све" + +#: frappe/public/js/frappe/form/toolbar.js:577 +msgid "View Audit Trail" +msgstr "Прикажи историју измена" + +#: frappe/templates/includes/likes/likes.py:34 +msgid "View Blog Post" +msgstr "Прикажи блог објаву" + +#: frappe/templates/includes/comments/comments.py:56 +msgid "View Comment" +msgstr "Прикажи коментар" + +#: frappe/core/doctype/user/user.js:151 +msgid "View Doctype Permissions" +msgstr "Прикажи DocType дозволе" + +#: 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 "Прикажи листу" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "Прикажи евиденцију" + +#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "Прикажи дозвољена документа" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "Прегледај својства (путем поља прилагоди образац)" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "Прикажи извештај" + +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "View Settings" +msgstr "Прикажи подешавања" + +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "View Switcher" +msgstr "Прикажи преклопник" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "Прикажи веб-сајт" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "Прикажи документ" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "Прикажи извештај у интернет претраживачу" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "Прикажи ово у интернет претраживачу" + +#: frappe/public/js/frappe/web_form/web_form.js: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 "Прикажи {0}" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +msgstr "Увид од стране" + +#. Group in DocType's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json +msgid "Views" +msgstr "Прегледи" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "Виртуелно" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "Виртуелни DocType {} захтева статичку методу под називом {} пронађену у {}" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "Виртуелни DocType {} захтева редефинисање инстанце методе {} пронађене у {}" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "Видљивост" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "Видљиво корисницима веб-сајта/портала." + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "Посета" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "Посети веб-страницу" + +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Visitor ID" +msgstr "ИД посетиоца" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "Желите ли да разговарате?" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "Складиште" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +msgstr "Упозорење" + +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "Упозорење: ГУБИТАК ПОДАТАКА НЕИЗБЕЖАН! Наставак ће трајно обрисати следеће колоне базе податак из DocType-а {0}:" + +#: 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 "Упозорење: Није могуће пронаћи {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 "Упозорење: Ажурирање бројача може изазвати конфликте у називима докумената уколико се не изврши правилно" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "Да ли Вам је овај чланак био користан?" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "Погледајте упутство" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "Погледајте видео" + +#: frappe/desk/doctype/workspace/workspace.js:34 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "Не дозвољавамо уређивање овог документа. Једноставно кликните на дугме уреди на страници радног простора да бисте омогућили уређивање и прилагодили га према Вашим жељама" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "Примили смо захтев за брисање података {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 "Примили смо Ваш захтев за преузимање података {0} повезаних са: {1}" + +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "Захваљујемо се ауторима ових пакета на доприносу." + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "Примили смо твој упит!" + +#: frappe/public/js/frappe/form/controls/password.js:87 +msgid "Weak" +msgstr "Слабо" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "Веб-образац" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "Поље веб-обрасца" + +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Web Form Fields" +msgstr "Поља веб-обрасца" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "Колона листе веб-обрасца" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "Веб-страница" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "Блок веб-странице" + +#: frappe/public/js/frappe/utils/utils.js:1709 +msgid "Web Page URL" +msgstr "URL веб-странице" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "Приказ веб-странице" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "Веб-сајт" + +#. Label of the web_template (Link) field in DocType 'Web Page Block' +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "Веб-шаблон" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "Поље веб-шаблона" + +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Template Values" +msgstr "Вредности веб-шаблона" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "Веб-шаблон није наведен" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +msgstr "Приказ на вебу" + +#. Name of a DocType +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Webhook" +msgstr "Webhook" + +#. Label of 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 "Webhook подаци" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "Webhook заглавље" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "Webhook заглавља" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +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 "Webhook евиденција захтева" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "Webhook тајна" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "Webhook безбедност" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +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 "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 +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 "Аналитика веб-сајта" + +#. Name of a role +#: 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 "Менаџер за веб-сајт" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "Мета ознака веб-сајта" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json +msgid "Website Route Meta" +msgstr "Мета подаци о путањи веб-сајта" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "Преусмеравање путање веб-сајта" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json +msgid "Website Script" +msgstr "Скрипта веб-сајта" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "Поље за претрагу на веб-сајту" + +#: frappe/core/doctype/doctype/doctype.py:1522 +msgid "Website Search Field must be a valid fieldname" +msgstr "Поље за претрагу на веб-сајту мора бити важећи назив поља" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json +msgid "Website Settings" +msgstr "Подешавање веб-сајта" + +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json +msgid "Website Sidebar" +msgstr "Бочна трака веб-сајта" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "Ставка бочне траке веб-сајта" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json +msgid "Website Slideshow" +msgstr "Веб-сајт презентација" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "Ставка веб-сајт презентације" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json +msgid "Website Theme" +msgstr "Тема веб-сајта" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "Тема сајта игнорише апликацију" + +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme Image" +msgstr "Слика теме веб-сајта" + +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme image link" +msgstr "Линк слике у теми веб-сајта" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "Websocket" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Wednesday" +msgstr "Среда" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +msgstr "Недеља" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Weekdays" +msgstr "Радни дани" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "Недељно" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Weekly Long" +msgstr "Током целе недеље" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "Добро дошли" + +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome Email Template" +msgstr "Шаблон имејла за добродошлицу" + +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome URL" +msgstr "URL за добродошлицу" + +#. Name of a Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "Добро дошли у радни простор" + +#: frappe/core/doctype/user/user.py:415 +msgid "Welcome email sent" +msgstr "Имејл добродошлице је послат" + +#: frappe/core/doctype/user/user.py:476 +msgid "Welcome to {0}" +msgstr "Добро дошли у {0}" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "Шта је ново" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "Када је омогућено, ово ће дозволити гостима да отпремају фајлове у Вашу апликацију. Можете укључити ову опцију уколико желите да прикупљате фајлове од корисника без потребе за пријављивањем, на пример путем веб-образаца за пријаву на посао." + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "Приликом слања докумената путем имејла, сачувај 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 "Приликом отпремања фајлова, приморај коришћење снимања путем интернет претраживача. Уколико није укључено, користиће се подразумевана камера мобилног уређаја када се препозна мобилни приступ." + +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "Када измените документ након што је отказан и сачуван, добиће нови број који представља верзију старог броја." + +#. Description of the 'DocType View' (Select) field in DocType 'Workspace +#. Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "На који приказ повезане врсте DocType треба да води ова пречица?" + +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 +msgid "Width" +msgstr "Ширина" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "Ширине могу биди подешене у пикселима или процентима." + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "Филтер са заменским симболом" + +#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report +#. Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Will add \"%\" before and after the query" +msgstr "Додаће \"%\" пре и после упита" + +#. 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 "Биће коришћено у URL (обично име)." + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "Биће Ваш ИД за пријављивање" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "Биће приказано само уколико су наслови одељака омогућени" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "Планирани задаци ће се извршавати само једном дневно за неактивне сајтове. Поставите на 0 да бисте избегли аутоматско искључивање планера." + +#: frappe/public/js/frappe/form/print_utils.js:15 +msgid "With Letter head" +msgstr "Са заглављем" + +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Information" +msgstr "Информације радника" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "Назив радника" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "Радни ток" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 +msgid "Workflow Action" +msgstr "Радња радног тока" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "Мастер подаци о радњама у радном току" + +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Name" +msgstr "Назив радње радног тока" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "Дозвољена улога за радњу у радном току" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +msgstr "Радња у радном току није креирана за опциона стања" + +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "Уређивач радног тока" + +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Builder ID" +msgstr "ИД уређивача радног тока" + +#: frappe/workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "Уређивач радног тока Вам дозвољава да визуално креирате радне токове. Можете превлачити и пуштати стања и повезивати их како бисте направили транзиције. Такође, можете ажурирати њихова својства путем бочне траке." + +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Data" +msgstr "Подаци радног тока" + +#: frappe/public/js/workflow_builder/components/Properties.vue:42 +msgid "Workflow Details" +msgstr "Детаљи радног тока" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "Стање документа у радном току" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +msgstr "Назив радног тока" + +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "Стање радног тока" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "Поље стања радног тока" + +#: frappe/model/workflow.py:61 +msgid "Workflow State not set" +msgstr "Стање радног тока није постављено" + +#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "Транзиција стања радног тока није дозвољена са {0} на {1}" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "Стања радног тока не постоје" + +#: frappe/model/workflow.py:328 +msgid "Workflow Status" +msgstr "Статус радног тока" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "Транзиција радног тока" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "Стање радног тока представља тренутно стање документа." + +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" +msgstr "Радни ток је успешно ажуриран" + +#. Label of the workspace_section (Section Break) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "Радни простор" + +#: frappe/public/js/frappe/router.js:173 +msgid "Workspace {0} does not exist" +msgstr "Радни простор {0} не постоји" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "Графикон радног простора" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "Прилагођени блок радног простора" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "Линк радног простора" + +#. Name of a role +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Manager" +msgstr "Менаџер радног простора" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "Бројчана картица радног простора" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "Брза листа радног простора" + +#. Label of a standard navbar item +#. Type: Action +#. Name of a DocType +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "Подешавање радног простора" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "Поставке радног простора завршене" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "Пречица до радног простора" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "Видљивост радног простора" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "Радни простор {0} је креиран" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "Радни простори" + +#: frappe/public/js/frappe/form/footer/form_timeline.js: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:760 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "Да ли желите да повучете овај коментар? Ово значи да више неће бити видљив корисницима веб-сајта/портала." + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "Завршавање" + +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Write" +msgstr "Измена" + +#: frappe/model/base_document.py:954 +msgid "Wrong Fetch From value" +msgstr "Погрешна вредност у пољу преузми из" + +#: frappe/public/js/frappe/views/reports/report_view.js:490 +msgid "X Axis Field" +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 "X поље" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "XLSX" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "Y оса" + +#: 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:1223 +msgid "Y Field" +msgstr "Y поље" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "Yahoo Mail" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "Yandex.Mail" + +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json +msgid "Year" +msgstr "Година" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "Годишње" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Yellow" +msgstr "Жута" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py: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 "Да" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "Да" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "Да" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "Јуче" + +#: frappe/public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "Ви" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "Лајковали сте" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "Повезани сте на интернет." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "Пријављени сте као други корисник." + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "Немате дозволу да приступите овом ресурсу" + +#: frappe/permissions.py: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: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}" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "Немате дозволу да креирате колоне" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "Немате дозволу да обришете стандардни извештај" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "Немате дозволу да обришете стандардну тему веб-сајта" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "Немате дозволу да уређујете извештај." + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/permissions.py:613 +msgid "You are not allowed to export {} doctype" +msgstr "Немате дозволу да извезете DocType {}" + +#: frappe/public/js/frappe/views/treeview.js:448 +msgid "You are not allowed to print this report" +msgstr "Немате дозволу да одштампате овај извештај" + +#: frappe/public/js/frappe/views/communication.js:781 +msgid "You are not allowed to send emails related to this document" +msgstr "Немате дозволу да пошаљете имејл везан за овај документ" + +#: frappe/website/doctype/web_form/web_form.py:566 +msgid "You are not allowed to update this Web Form Document" +msgstr "Немате дозволу да ажурирате овај документ веб-обрасца" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "Нисте повезани на интернет. Покушајте поново касније." + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "Није Вам дозвољено да приступите овој страници без пријављивања." + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "Немате дозволу да приступите овој страници." + +#: frappe/__init__.py:676 +msgid "You are not permitted to access this resource. Login to access" +msgstr "Немате дозволу за приступ овом ресурсу. Пријавите се за приступ" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "Сада пратите овај документ. Добијаћете дневна обавештења путем имејла. Можете ово променити у подешавањима корисника." + +#: frappe/core/doctype/installed_applications/installed_applications.py:86 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "Дозвољено Вам је да ажурирате редослед, немојте уклањати или додавати апликације." + +#: frappe/email/doctype/email_account/email_account.js:284 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "Одабрали сте опцију синхронизације свега. Биће синхронизоване и прочитане и непрочитане поруке са сервера. Ово може изазвати дупликате комуникације (имејлова)." + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "Приложили сте {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 "Можете додати динамичке особине из документа користећи јиња шаблонски језик." + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "Такође можете приступити wкхтмлтопдф променљивама (важи искључиво за штампање у PDF):" + +#: frappe/templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "Такође можете копирати и налепити следећи линк у Вашем интернет претраживачу" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this " +msgstr "Такође можете копирати и налепити ово " + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "Такође можете копирати и налепити овај {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 "Можете променити поднета документа тако што ћете их прво отказати, а затим изменити." + +#: frappe/public/js/frappe/logtypes.js:21 +msgid "You can change the retention policy from {0}." +msgstr "Можете променити политику чувања података у {0}." + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "Можете наставити са уводном обуком након што истражите ову страницу" + +#: frappe/model/delete_doc.py:136 +msgid "You can disable this {0} instead of deleting it." +msgstr "Можете онемогућити овај {0} уместо да га обришете." + +#: frappe/core/doctype/file/file.py:736 +msgid "You can increase the limit from System Settings." +msgstr "Можете повећати ограничење у подешавањима система." + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "Можете ручно уклонити закључано уколико сматрате да је безбедно: {}" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "Можете уметнути слике само у Маркдоwн поља" + +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +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 "Можете поставити само 3 прилагођене доцтyпе-а у табели врсте докумената." + +#: frappe/handler.py:182 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "Можете само отпремити JPG, PNG, PDF, TXT, CSV или Мајкрософт документа." + +#: 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 "Можете отпремити највише до 500 записа одједном. (у неким случајевима и мање)" + +#: 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 "Можете покушати да промените филтере Вашег извештаја." + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "Можете користити прилагоди образац за постављање нивоа на пољима." + +#: frappe/public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "Можете користити заменски симбол %" + +#: frappe/custom/doctype/customize_form/customize_form.py:389 +msgid "You can't set 'Options' for field {0}" +msgstr "Не можете поставити 'Опције' за поље {0}" + +#: frappe/custom/doctype/customize_form/customize_form.py:393 +msgid "You can't set 'Translatable' for field {0}" +msgstr "Не можете поставити 'Могуће превођење' за поље {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "Отказали сте овај документ" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "Отказали сте овај документ {1}" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "Не можете креирати графикон контролне табле из једног DocType-а" + +#: frappe/custom/doctype/customize_form/customize_form.py:385 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "Променили сте вредност {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "Променили сте вредност {0} {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "Променили сте вредност за {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "Променили сте вредност за {0} {1}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +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 "Креирали сте ово" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "Ви сте креирали овај документ {0}" + +#: frappe/client.py:417 +msgid "You do not have Read or Select Permissions for {}" +msgstr "Немате дозволу за читање или избор за {}" + +#: frappe/public/js/frappe/request.js:177 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ." + +#: frappe/app.py: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 "Немате дозволу за приступ {0}: {1}." + +#: frappe/public/js/frappe/form/form.js:960 +msgid "You do not have permissions to cancel all linked documents." +msgstr "Немате дозволу да откажете све повезане документе." + +#: frappe/desk/query_report.py:42 +msgid "You don't have access to Report: {0}" +msgstr "Немате приступ извештају: {0}" + +#: frappe/website/doctype/web_form/web_form.py:769 +msgid "You don't have permission to access the {0} DocType." +msgstr "Немате дозволе за приступ DocType-у {0}." + +#: frappe/utils/response.py:283 frappe/utils/response.py:287 +msgid "You don't have permission to access this file" +msgstr "Немате дозволу за приступ овом фајлу" + +#: frappe/desk/query_report.py:48 +msgid "You don't have permission to get a report on: {0}" +msgstr "Немате дозволу да добијате извештај за: {0}" + +#: frappe/website/doctype/web_form/web_form.py:172 +msgid "You don't have the permissions to access this document" +msgstr "Немате дозволу за приступ овом документу" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from: " +msgstr "Имате нову поруку од: " + +#: frappe/handler.py:118 +msgid "You have been successfully logged out" +msgstr "Успешно сте ођављени" + +#: frappe/custom/doctype/customize_form/customize_form.py:244 +msgid "You have hit the row size limit on database table: {0}" +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 "Нисте унели вредност. Поље ће бити постављено као празно." + +#: frappe/templates/includes/likes/likes.py:31 +msgid "You have received a ❤️ like on your blog post" +msgstr "Добили сте ❤️ лајкова на својој блог објави" + +#: frappe/twofactor.py:432 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "Морате омогућити двофакторску аутентификацију у подешавањима система." + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "Имате несачуване промене у овом обрасцу. Молимо Вас да сачувате пре него што наставите." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "Имате непрочитана обавештења" + +#: frappe/core/doctype/log_settings/log_settings.py:125 +msgid "You have unseen {0}" +msgstr "Имате непрочитано {0}" + +#: 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 "Још увек нисте креирали {0}" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "Достигли сте ограничење броја захтева због превеликог броја захтева. Молимо Вас покушајте поново касније." + +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 +msgid "You last edited this" +msgstr "Ви сте последњи пут ово уредили" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "Морате додати барем један линк." + +#: frappe/website/doctype/web_form/web_form.py:765 +msgid "You must be logged in to use this form." +msgstr "Морате бити пријављени да бисте користили овај образац." + +#: frappe/website/doctype/web_form/web_form.py:606 +msgid "You must login to submit this form" +msgstr "Морате бити пријављени да бисте поднели овај образац" + +#: frappe/model/document.py:356 +msgid "You need the '{0}' permission on {1} {2} to perform this action." +msgstr "Неопходна Вам је дозвола '{0}' на {1} {2} да бисте извршили ову радњу." + +#: frappe/desk/doctype/workspace/workspace.py:127 +msgid "You need to be Workspace Manager to delete a public workspace." +msgstr "Морате бити менаџер радног простора да бисте обрисали јавни радни простор." + +#: frappe/desk/doctype/workspace/workspace.py:76 +msgid "You need to be Workspace Manager to edit this document" +msgstr "Морате бити менаџер радног простора да бисте уредили овај документ" + +#: frappe/www/attribution.py:16 +msgid "You need to be a system user to access this page." +msgstr "Морате бити системски корисник да бисте приступили овој страници." + +#: frappe/website/doctype/web_form/web_form.py:91 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "Морате бити у развојном режиму да бисте уредили стандардни веб-образац" + +#: frappe/utils/response.py:272 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "Морате бити пријављени и имати улогу систем менаџера да бисте приступили резервним копијама." + +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "Морате бити пријављени да бисте приступили овој страници" + +#: frappe/website/doctype/web_form/web_form.py:161 +msgid "You need to be logged in to access this {0}." +msgstr "Морате бити пријављени да бисте приступили овом {0}." + +#: 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 "Морате омогућити JavaScript да би Ваша апликација радила." + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "Морате имати дозволу за \"Дељење\"" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "Морате да инсталирате пyцупс да бисте користили ову могућност!" + +#: 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 "Морате подесити једну IMAP датотеку за {0}" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "Потребна Вам је дозвола за измену на {0} {1} за спајање" + +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "Потребна Вам је дозвола за измену на {0} {1} за преименовање" + +#: frappe/client.py:449 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "Потребна Вам је дозвола {0} да бисте преузели вредности из {1} {2}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "Уклонили сте овај прилог {0}" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +msgstr "Изгледа да сте спремни за наставак!" + +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "Изгледа да сте унели своје име уместо имејла. Унесите важећу имејл адресу како бисмо Вам могли одговорити." + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "Изабрали те нацрте или отказане документе" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "Поднели сте овај документ" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "Поднели сте овај документ {0}" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "Престали сте да пратите овај документ" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "Прегледали сте ово" + +#: frappe/public/js/frappe/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 "Ваш CSV фајл се генерише и биће приказан у секцији прилози када буде спреман. Такође, биће Вам послато обавештење када фајл буде доступан за преузимање." + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 +msgid "Your Country" +msgstr "Ваша држава" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "Ваш језик" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "Ваше име" + +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "Ваш PDF је спреман за преузимање" + +#: frappe/patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "Ваше пречице" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 +msgid "Your account has been deleted" +msgstr "Ваш налог је обрисан" + +#: frappe/auth.py:514 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "Ваш налог је закључан и биће поново омогућен након {0} секунди" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "Ваша додела за {0} {1} је уклоњена од стране {2}" + +#: 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 "Захтев за повезивање са Google Цалендар-а је успешно прихваћен" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "Ваша имејл адреса" + +#: frappe/public/js/frappe/web_form/web_form.js:428 +msgid "Your form has been successfully updated" +msgstr "Ваш образац је успешно ажуриран" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "Ваш ИД за пријављивање је" + +#: frappe/www/update-password.html:167 +msgid "Your new password has been set successfully." +msgstr "Нова лозинка је успешно постављена." + +#: 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' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +msgstr "Назив и адреса Ваше организације за подножје имејла." + +#: frappe/templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку." + +#: frappe/app.py:354 +msgid "Your session has expired, please login again to continue." +msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "Ваш сајт је тренутно на одржавању или се ажурира." + +#: frappe/templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "Ваш верификациони код је {0}" + +#: frappe/utils/data.py:1547 +msgid "Zero" +msgstr "Нула" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Zero means send records updated at anytime" +msgstr "Нула значи послати записе који су ажурирани у било којем тренутку" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +msgid "[Action taken by {0}]" +msgstr "[Радња предузета од стране {0}]" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "_doctype" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "_report" + +#: frappe/database/database.py:361 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "`as_iterator` ради само са `as_list=True` или `as_dict=True`" + +#: frappe/utils/background_jobs.py:120 +msgid "`job_id` paramater is required for deduplication." +msgstr "параметар `job_id` је обавезан за уклањање дупликата." + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 +msgid "added rows for {0}" +msgstr "додати су редови за {0}" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "афтеринсерт" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "измени" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +msgid "and" +msgstr "и" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "растуће" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "плаво" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "по улози" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "cProfile излаз" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +msgid "calendar" +msgstr "календар" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "откажи" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "отказано" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "очисти" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "коментарисано" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "креирај" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "цијан" + +#: frappe/public/js/frappe/form/controls/duration.js:208 +#: frappe/public/js/frappe/utils/utils.js:1116 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "д" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "тамносива" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "контролна табла" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd-mm-yyyy" +msgstr "dd-mm-yyyy" + +#. 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 "dd.mm.yyyy" + +#. 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 "dd/mm/yyyy" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "default" +msgstr "подразумевано" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "одгођено" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "обриши" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "опадајуће" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "врста документа...,нпр. купац" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "нпр. \"Подршка\", \"Продаја\", \"Петар Петровић\"" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "нпр. (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 "нпр. 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 "нпр. odgovori@vašakompanija.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 "нпр. smtp.gmail.com" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "нпр:" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "emacs" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "имејл" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "email inbox" +msgstr "пријемна пошта имејла" + +#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/public/js/frappe/form/controls/link.js:503 +msgid "empty" +msgstr "празно" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +msgstr "извоз" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "facebook" +msgstr "facebook" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "failed" +msgstr "неуспешно" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "fairlogin" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "завршено" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "сива" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "зелена" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "сива" + +#: frappe/utils/backups.py:399 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "gzip није пронађен у PATH! Ово је неопходно за прављење резервне копије." + +#: frappe/public/js/frappe/form/controls/duration.js:209 +#: frappe/public/js/frappe/utils/utils.js:1120 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "х" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +msgid "hub" +msgstr "hub" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "иконица" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "увоз" + +#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +msgid "in minutes" +msgstr "у минутима" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "jane@example.com" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "управо сада" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +msgid "label" +msgstr "ознака" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "светлоплава" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +msgstr "линк" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "linkedin" +msgstr "linkedin" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "листа" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "пријављен" + +#: frappe/website/doctype/web_form/web_form.js:362 +msgid "login_required" +msgstr "login_required" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "long" +msgstr "дуго" + +#: frappe/public/js/frappe/form/controls/duration.js:210 +#: frappe/public/js/frappe/utils/utils.js:1124 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "m" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +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 "мин за читање" + +#. 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 "mm-dd-yyyy" + +#. 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 "mm/dd/yyyy" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "модул" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "назив модула..." + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +msgid "new" +msgstr "ново" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "нова врста документа" + +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "no failed attempts" +msgstr "нема неуспелих покушаја" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "nonce" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "обавештен" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "сада" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "од" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "old_parent" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "on_cancel" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "on_change" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "on_submit" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "on_trash" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "on_update" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "on_update_after_submit" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "или" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "наранџаста" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "страница" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +msgstr "роза" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "plain" +msgstr "плаин" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "штампа" + +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "processlist" +msgstr "листа процеса" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "љубичаста" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "query-report" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "у реду чекања" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "читање" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "црвена" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 +msgid "removed rows for {0}" +msgstr "уклоњени редови за {0}" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +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 "извештај" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "одговор" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "враћено {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 "s" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "s256" +msgstr "s256" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "заказано" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "изабери" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +msgstr "подели" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "short" +msgstr "кратко" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +msgid "since last month" +msgstr "од прошлог месеца" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +msgid "since last week" +msgstr "од прошле недеље" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +msgid "since last year" +msgstr "од прошле године" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +msgid "since yesterday" +msgstr "од јуче" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "почело" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +msgstr "покретање поставки..." + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. group" +msgstr "текстуална вредност, нпр. група" + +#. Description of the 'LDAP Group Member attribute' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. member" +msgstr "текстуална вредност, нпр. члан" + +#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "текстуална вредност, нпр. {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 "поднеси" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "назив ознаке..., нпр. #ознака" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "тексту у врсти документа" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "овај образац" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "ово не би требало да се поквари" + +#. 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 "twitter" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "ажурирано на {0}" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "користите % као заменски симбол" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "вредности одвојене зарезима" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "version_table" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "путем правила доделе" + +#: 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 "путем увоза података" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "путем Google Meet" + +#: frappe/email/doctype/notification/notification.py:361 +msgid "via Notification" +msgstr "путем обавештења" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "путем {0}" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "vim" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "vscode" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "жели да приступи следећим детаљима са Вашег налога" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "when clicked on element it will focus popover if present." +msgstr "када се кликне на елемент, фокусираће се на искачућу поруку уколико је присутна." + +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "wkhtmltopdf" + +#: frappe/printing/page/print/print.js:622 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +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 "измена" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "жута" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "јуче" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "{0}" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "{0} ${skip_list ? \"\" : vrsta}" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +msgid "{0} ${type}" +msgstr "{0} ${type}" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "{0} ({1})" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "{0} ({1}) (1 ред обавезан)" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "{0} ({1}) - {2}%" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "{0} = {1}" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "{0} календар" + +#: frappe/public/js/frappe/views/reports/report_view.js:570 +msgid "{0} Chart" +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 "{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 "{0} поља" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "{0} Google Calendar догађаја синхронизовано." + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "{0} Google Contacts синхронизовано." + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +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 "{0} листа" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "{0} М" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "{0} мапа" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "{0} назив" + +#: frappe/model/base_document.py:1154 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +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 "{0} извештај" + +#: frappe/public/js/frappe/views/reports/query_report.js:954 +msgid "{0} Reports" +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 "{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 "{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 "{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 "{0} радни простор" + +#: frappe/public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "{0} додато" + +#: frappe/public/js/frappe/form/controls/data.js:204 +msgid "{0} already exists. Select another name" +msgstr "{0} већ постоји. Изаберите други назив" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "{0} је већ отказао претплату" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "{0} је већ отказао претплату за {1} {2}" + +#: frappe/utils/data.py:1740 +msgid "{0} and {1}" +msgstr "{0} и {1}" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "{0} је тренутно {1}" + +#: frappe/printing/doctype/print_format/print_format.py:89 +msgid "{0} are required" +msgstr "{0} су неопходни" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "{0} је доделио нови задатак {1} {2} за Вас" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "{0} доделио {1}: {2}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "{0} приложен {1}" + +#: frappe/core/doctype/system_settings/system_settings.py:150 +msgid "{0} can not be more than {1}" +msgstr "{0} не може бити веће од {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "{0} је отказао овај документ" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +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 "{0} не може бити измењен јер није отказан. Молимо Вас да откажете документ пре него што направите измену." + +#: frappe/public/js/form_builder/store.js:190 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "{0} не може бити сакривено и обавезно без задате вредности" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "{0} је променио вредност {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "{0} је променио вредност за {1} {2}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "{0} је променио вредности за {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "{0} је променио вредности за {1} {2}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "{0} је променио {1} у {2}" + +#: frappe/website/doctype/blog_post/blog_post.py:382 +msgid "{0} comments" +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 "{0} садржи неважећи израз функције преузми из, функција преузми из не може бити самореференцијална." + +#: frappe/public/js/frappe/views/interaction.js:261 +msgid "{0} created successfully" +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 "{0} је креирао ово" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "документ {1} је креиран од стране {0}" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "{0} д" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +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 "{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 "{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 "{0} формат није могао бити одређен из вредности у овој колони. Подразумевано на {1}." + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +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 "{0} из {1} у {2} у реду #{3}" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "{0} х" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +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}" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "пре {0} часова" + +#: frappe/website/doctype/web_form/templates/web_form.html:148 +msgid "{0} if you are not redirected within {1} seconds" +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 "{0} у реду {1} не може имати URL и зависне ставке" + +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "{0} is a mandatory field" +msgstr "{0} је обавезно поље" + +#: frappe/core/doctype/file/file.py:544 +msgid "{0} is a not a valid zip file" +msgstr "{0} није важећи зип фајл" + +#: frappe/core/doctype/doctype/doctype.py:1618 +msgid "{0} is an invalid Data field." +msgstr "{0} није важеће поље за податак." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "{0} није важећа имејл адреса у 'Примаоци'" + +#: frappe/public/js/frappe/views/reports/report_view.js:1468 +msgid "{0} is between {1} and {2}" +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 "{0} је тренутно {1}" + +#: 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:1457 +msgid "{0} is greater than or equal to {1}" +msgstr "{0} је веће или једнако {1}" + +#: 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:1462 +msgid "{0} is less than or equal to {1}" +msgstr "{0} је мање или једнако {1}" + +#: 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:1487 +msgid "{0} is like {1}" +msgstr "{0} је као {1}" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "{0} је обавезно" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "{0} није поље за доцтyпе {1}" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "{0} није формат за необрађено штампање." + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "{0} није важећи календар. Преусмеравање на подразумевани календар." + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "{0} није важећи Црон израз." + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +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 +msgid "{0} is not a valid Email Address" +msgstr "{0} није важећа имејл адреса" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра." + +#: frappe/utils/__init__.py:170 +msgid "{0} is not a valid Name" +msgstr "{0} није важећи назив" + +#: frappe/utils/__init__.py:149 +msgid "{0} is not a valid Phone Number" +msgstr "{0} није важећи број телефона" + +#: frappe/model/workflow.py:189 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "{0} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново." + +#: frappe/permissions.py:796 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "{0} није важећи матични DocType за {1}" + +#: frappe/permissions.py:816 +msgid "{0} is not a valid parentfield for {1}" +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 "{0} није важећи формат извештаја. Формат извештаја треба да буде један од следећих {1}" + +#: frappe/core/doctype/file/file.py:524 +msgid "{0} is not a zip file" +msgstr "{0} није зип фајл" + +#: 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:1489 +msgid "{0} is not like {1}" +msgstr "{0} није као {1}" + +#: 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:1493 +msgid "{0} is not set" +msgstr "{0} није постављен" + +#: frappe/printing/doctype/print_format/print_format.py:164 +msgid "{0} is now default print format for {1} doctype" +msgstr "{0} је сада подразумевани формат за штампање за {1} доцтyпе" + +#: frappe/public/js/frappe/views/reports/report_view.js:1476 +msgid "{0} is one of {1}" +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 "{0} је неопходно" + +#: 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:1471 +msgid "{0} is within {1}" +msgstr "{0} је унутар {1}" + +#: frappe/public/js/frappe/list/list_view.js:1694 +msgid "{0} items selected" +msgstr "одабрано {0} ставки" + +#: 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:106 +msgid "{0} last edited this" +msgstr "{0} је последњи пут ово уредио" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "{0} се пријавио" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "{0} се одјавио: {1}" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "{0} m" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "{0} Вас је поменуо у коментару у {1} {2}" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "пре {0} минута" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "пре {0} месеци" + +#: frappe/model/document.py:1791 +msgid "{0} must be after {1}" +msgstr "{0} мора бити након {1}" + +#: frappe/model/document.py:1550 +msgid "{0} must be beginning with '{1}'" +msgstr "{0} мора почињати са '{1}'" + +#: frappe/model/document.py:1552 +msgid "{0} must be equal to '{1}'" +msgstr "{0} мора бити једнако '{1}'" + +#: frappe/model/document.py:1548 +msgid "{0} must be none of {1}" +msgstr "{0} не сме бити ниједно од {1}" + +#: 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:876 +msgid "{0} must be set first" +msgstr "{0} мора прво бити постављено" + +#: frappe/model/base_document.py:729 +msgid "{0} must be unique" +msgstr "{0} мора бити јединствено" + +#: frappe/model/document.py:1554 +msgid "{0} must be {1} {2}" +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 "{0} мора почињати и завршавати се словом и може садржати само слова, црту или доњу црту." + +#: frappe/workflow/doctype/workflow/workflow.py:90 +msgid "{0} not a valid State" +msgstr "{0} није важеће стање" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "{0} се не може преименовати" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "{0} није пронађено" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1068 +msgid "{0} of {1}" +msgstr "{0} од {1}" + +#: frappe/public/js/frappe/list/list_view.js:1070 +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 +msgctxt "Money in words" +msgid "{0} only." +msgstr "само {0}." + +#: frappe/utils/data.py:1730 +msgid "{0} or {1}" +msgstr "{0} или {1}" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "обрисан је {0} запис" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "{0} записа се не брише аутоматски." + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "{0} записа се чува {1} дана." + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "{0} записа обрисано" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "{0} записа ће бити извезено" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "{0} је уклонио прилог {1}" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "{0} је уклонио свој задатак." + +#: frappe/public/js/frappe/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "Улога {0} нема дозволе ни за једну врсту документа" + +#: frappe/model/document.py:1784 +msgid "{0} row #{1}: " +msgstr "{0} ред#{1}: " + +#: frappe/desk/query_report.py:612 +msgid "{0} saved successfully" +msgstr "{0} је успешно сачувано" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "{0} је себи доделио овај задатак: {1}" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "{0} је поделио документ {1} {2} са Вама" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "{0} је поделио овај документ са свима" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "{0} је поделио овај документ са {1}" + +#: frappe/core/doctype/doctype/doctype.py:316 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "{0} треба да буде индексирано јер се користи у везама на контролној табли" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +msgid "{0} should not be same as {1}" +msgstr "{0} не сме бити исто као {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "{0} је поднео овај документ" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +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 "{0} претплатника додато" + +#: frappe/email/queue.py:68 +msgid "{0} to stop receiving emails of this type" +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 "{0} до {1}" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "{0} је опозвао дељење овог документа {1}" + +#: frappe/custom/doctype/customize_form/customize_form.py:253 +msgid "{0} updated" +msgstr "{0} је ажурирано" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "Одабрано је {0} вредност" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "{0} је погледало ово" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "{0} w" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "пре {0} недеља" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "{0} y" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "пре {0} година" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "{0} {1} је додат" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "{0} {1} је додат на контролну таблу {2}" + +#: 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:987 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "{0} {1} не може бити \"{2}\". Требало би да буде једно од \"{3}\"" + +#: frappe/utils/nestedset.py:340 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "{0} {1} не може бити крајњи чвор јер има зависне ентитете" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "{0} {1} не постоји, изаберите ново тачку за спајање" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "{0} {1} је повезан са следећим поднетим документима: {2}" + +#: frappe/model/document.py:256 frappe/permissions.py:567 +msgid "{0} {1} not found" +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 "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}." + +#: frappe/model/base_document.py:1115 +msgid "{0}, Row {1}" +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 "{0}/{1} завршено | Оставите ову картицу отвореном док се процес не заврши." + +#: frappe/model/base_document.py:1120 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "{0}: '{1}' ({3}) ће бити скраћено, јер је максималан број дозвољених карактера {2}" + +#: frappe/core/doctype/doctype/doctype.py:1800 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "{0}: Не може се поставити измена без отказивања" + +#: frappe/core/doctype/doctype/doctype.py:1818 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "{0}: Не може се поставити додељена измена уколико није могуће поднети" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "{0}: Не може се поставити додељено подношење уколико није могуће поднети" + +#: frappe/core/doctype/doctype/doctype.py:1795 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "{0}: Не може се поставити отказивање без подношења" + +#: frappe/core/doctype/doctype/doctype.py:1802 +msgid "{0}: Cannot set Import without Create" +msgstr "{0}: Не може се поставити увоз без креирања" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "{0}: Не може се поставити подношење, отказивање или допуна без измене" + +#: frappe/core/doctype/doctype/doctype.py:1822 +msgid "{0}: Cannot set import as {1} is not importable" +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 "{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 "{0}: Поље '{1}' не може бити постављено као јединствено јер садржи нејединствене вредности" + +#: frappe/core/doctype/doctype/doctype.py:1334 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "{0}: Поље {1} у реду {2} не може бити сакривено и обавезно без подразумеване вредности" + +#: frappe/core/doctype/doctype/doctype.py:1293 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "{0}: Поље {1} врсте {2} не може бити обавезно" + +#: frappe/core/doctype/doctype/doctype.py:1281 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "{0}: Назив поља {1} се појављује више пута у редовима {2}" + +#: frappe/core/doctype/doctype/doctype.py:1413 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "{0}: Врста поља {1} за {2} не може бити јединствено" + +#: frappe/core/doctype/doctype/doctype.py:1755 +msgid "{0}: No basic permissions set" +msgstr "{0}: Основне дозволе нису постављене" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +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 "{0}: Опције морају да буду валидни DocType за поље {1} у реду {2}" + +#: frappe/core/doctype/doctype/doctype.py:1304 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +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 "{0}: Опције {1} морају бити исте као назив DocType-а {2} за поље {3}" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "{0}: Могу се применити и друга правила дозвола" + +#: frappe/core/doctype/doctype/doctype.py:1784 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +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 "{0}: Можете повећати ограничење за ово поље уколико је потребно путем {1}" + +#: frappe/core/doctype/doctype/doctype.py:1268 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "{0}: назив поља не сме да садржи резервисане речи {1}" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "{0}: {1}" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "{0}: {1} је постављено на стање {2}" + +#: frappe/public/js/frappe/views/reports/query_report.js:1281 +msgid "{0}: {1} vs {2}" +msgstr "{0}: {1} у односу на {2}" + +#: frappe/core/doctype/doctype/doctype.py:1434 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "{0}: назив поља {1} за {2} не може бити индексиран" + +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "{1} сачувано" + +#: frappe/public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "{count} ћелија копирано" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "{count} ћелија копирано" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "{count} ред изабран" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "{count} редова изабрано" + +#: frappe/core/doctype/doctype/doctype.py:1488 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "{{{0}}} није исправан формат назива поља. Требало би да буде {{field_name}}." + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "{} завршено" + +#: frappe/utils/data.py:2488 +msgid "{} Invalid python code on line {}" +msgstr "{} Неважећи пyтхон код на линији {}" + +#: frappe/utils/data.py:2497 +msgid "{} Possibly invalid python code.
{}" +msgstr "{} Потенцијално неважећи пyтхон код.
{}" + +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "{} објављено" + +#: frappe/core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "{} не подржава аутоматско чишћење евиденција." + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "{} поље не може бити празно." + +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "{} је онемогућено. Може се омогућити само уколико је {} означено." + +#: frappe/utils/data.py:135 +msgid "{} is not a valid date string." +msgstr "{} није исправан датум у текстуалном формату." + +#: frappe/commands/utils.py:562 +msgid "{} not found in PATH! This is required to access the console." +msgstr "{} није пронађен PATH! Ово је неопходно за приступ конзоли." + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "{} није пронађен PATH! Ово је неопходно за обнову базе података." + +#: frappe/utils/backups.py:466 +msgid "{} not found in PATH! This is required to take a backup." +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 "← Назад на отпремање фајлова" + diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 5b94c50d20..93d0b0a5e5 100644 --- a/frappe/locale/sr_CS.po +++ b/frappe/locale/sr_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-11 14:05\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 (Latin)\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 "1 događaj iz Google Calendar-a je sinhronizovan." -#: 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 izveštaj" @@ -149,7 +149,7 @@ msgstr "1 izveštaj" msgid "1 comment" msgstr "1 komentar" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:711 msgid "1 day ago" msgstr "pre 1 dan" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:709 msgid "1 hour ago" msgstr "pre 1 sata" #: 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 "pre 1 minut" #: 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 "pre 1 mesec" @@ -180,37 +180,37 @@ msgstr "1 оd 2" msgid "1 record will be exported" msgstr "1 zapis će biti izvezen" -#: frappe/tests/test_utils.py:705 +#: frappe/tests/test_utils.py:706 msgid "1 second ago" msgstr "pre 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 "pre 1 nedelju" #: 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 "pre 1 godinu" -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:710 msgid "2 hours ago" msgstr "pre 2 sata" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:716 msgid "2 months ago" msgstr "pre 2 meseca" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:714 msgid "2 weeks ago" msgstr "pre 2 nedelje" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:718 msgid "2 years ago" msgstr "pre 2 godine" -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:708 msgid "3 minutes ago" msgstr "pre 3 minuta" @@ -226,7 +226,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 zapisa" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:712 msgid "5 days ago" msgstr "pre 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" @@ -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 pristup" @@ -885,7 +882,7 @@ msgstr "API ključ se ne može ponovo generisati" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "API Logging" -msgstr "" +msgstr "Zapisivanje API zahteva" #. Label of the api_method (Data) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -895,7 +892,7 @@ msgstr "API metoda" #. Name of a DocType #: frappe/core/doctype/api_request_log/api_request_log.json msgid "API Request Log" -msgstr "" +msgstr "Evidencija API zahteva" #. Label of the api_secret (Password) field in DocType 'User' #. Label of the api_secret (Password) field in DocType 'Email Account' @@ -954,17 +951,6 @@ msgstr "Ostalo je još 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 @@ -1015,6 +1001,10 @@ msgstr "Menadžer naloga" msgid "Accounts User" msgstr "Korisnik naloga" +#: 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, kliknite ovde za pregled svih dokumenata" + #. 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 "Radnja / Putanja" msgid "Action Complete" msgstr "Radnja završena" -#: frappe/model/document.py:1872 +#: frappe/model/document.py:1871 msgid "Action Failed" msgstr "Radnja neuspešna" @@ -1094,10 +1084,10 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js: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" @@ -1159,8 +1149,8 @@ msgstr "Dnevnik aktivnosti" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js: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" @@ -1201,7 +1191,7 @@ msgstr "Dodaj ivicu na vrhu" msgid "Add Card to Dashboard" msgstr "Dodaj karticu na kontrolnu tablu" -#: frappe/public/js/frappe/views/reports/query_report.js:211 +#: frappe/public/js/frappe/views/reports/query_report.js:209 msgid "Add Chart to Dashboard" msgstr "Dodaj grafikon na kontrolnu tablu" @@ -1210,10 +1200,10 @@ msgid "Add Child" msgstr "Dodaj zavisni element" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js: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" @@ -1237,7 +1227,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" @@ -1272,7 +1262,7 @@ msgstr "Dodaj korisnike" 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" @@ -1417,7 +1407,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 kontrolnu tablu" @@ -1572,11 +1562,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 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} dana {1} putem IP adrese {2}." @@ -1809,12 +1799,6 @@ msgstr "Dozvoli masovno uređivanje" msgid "Allow Consecutive Login Attempts " msgstr "Dozvoli uzastopne pokušaje prijavljivanja " -#. 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 Dropbox" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" msgstr "Dozvoli pristup Google Calendar" @@ -1823,10 +1807,6 @@ msgstr "Dozvoli pristup Google Calendar" msgid "Allow Google Contacts Access" msgstr "Dozvoli pristup Google Contact" -#: frappe/integrations/doctype/google_drive/google_drive.py:52 -msgid "Allow Google Drive Access" -msgstr "Dozvoli pristup Google Drive" - #. Label of the allow_guest (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Allow Guest" @@ -2015,7 +1995,7 @@ msgstr "Dozvoli štampu" #: frappe/desk/page/setup_wizard/setup_wizard.js:431 msgid "Allow recording my first session to improve user experience" -msgstr "" +msgstr "Dozvoli snimanje moje prve sesije radi poboljšanja korisničkog iskustva" #. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web #. Form' @@ -2081,7 +2061,7 @@ msgstr "Dozvoljeni umetni domeni" msgid "Allowing DocType, DocType. Be careful!" msgstr "Dozvoljavanje DocType, DocType. Budite oprezni!" -#: frappe/core/doctype/user/user.py:1021 +#: frappe/core/doctype/user/user.py:1023 msgid "Already Registered" msgstr "Već registrovan" @@ -2089,11 +2069,11 @@ msgstr "Već registrovan" msgid "Already in the following Users ToDo list:{0}" msgstr "Već se nalazi na listi za uraditi sledećih 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 dodavanje zavisnog polja za valutu {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 dodavanje polja od zavisnosti statusa {0}" @@ -2172,7 +2152,7 @@ msgstr "Izmena" msgid "Amendment Naming Override" msgstr "Zanemari pravila imenovanja izmena" -#: frappe/model/document.py:550 +#: frappe/model/document.py:549 msgid "Amendment Not Allowed" msgstr "Izmena nije dozvoljena" @@ -2261,15 +2241,6 @@ msgstr "Osim sistem menadžera, uloge sa pravima za postavljanje korisničkih do 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 "Pristupni ključ aplikacije" - -#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22 -msgid "App Access Key and/or Secret Key are not present." -msgstr "Pristupni i/ili tajni ključ aplikacije nije dostupan." - #. 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 "Logo 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" @@ -2462,7 +2428,7 @@ msgstr "Arhivirane kolone" msgid "Are you sure you want to clear the assignments?" msgstr "Da li ste sigurni da želite da očistite dodeljene 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 "Da li ste sigurni da želite da obrišete sve redove?" @@ -2490,7 +2456,7 @@ msgstr "Da li ste sigurni da želite da obrišete karticu? Svi odeljci zajedno s msgid "Are you sure you want to discard the changes?" msgstr "Da li ste sigurni da želite da odbacite promene?" -#: frappe/public/js/frappe/views/reports/query_report.js:965 +#: frappe/public/js/frappe/views/reports/query_report.js:967 msgid "Are you sure you want to generate a new report?" msgstr "Da li ste sigurni da želite da generišete novi izveštaj?" @@ -2616,7 +2582,7 @@ msgstr "Dodeljeno od" msgid "Assigned By Full Name" msgstr "Ime i prezime dodelioca" -#: 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 "Odobri pristup Google Calendar-u" msgid "Authorize Google Contacts Access" msgstr "Odobri pristup 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 "Odobri pristup 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" @@ -3082,11 +3040,11 @@ msgstr "Automatska poruka" msgid "Automatic" msgstr "Automatski" -#: 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 može biti aktivirano samo za jedan imejl nalog." -#: 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 biti aktivirano samo ukoliko je ulazni omogućen." @@ -3300,66 +3258,14 @@ msgstr "Štampanje u pozadini (neophodno za više od 25 dokumenata)" msgid "Background Workers" msgstr "Pozadinski radnici" -#: frappe/integrations/doctype/google_drive/google_drive.py:170 -msgid "Backing up Data." -msgstr "Pravljenje rezervne kopije podataka." - -#: frappe/integrations/doctype/google_drive/google_drive.js:32 -msgid "Backing up to Google Drive." -msgstr "Pravljenje rezervne kopije na Google Drive." - -#. Label of a Card Break in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Backup" -msgstr "Rezervna 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 rezervne kopije" - #: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" msgstr "Ključ za šifrovanje rezervne kopije" -#. 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 "Fajlovi rezervne 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 datoteke rezervne kopije" - -#. 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 datoteke rezervne kopije" - -#. 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 rezervne kopije" - -#. 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 "Putanja rezervne kopije" - #: frappe/desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" msgstr "Zadatak za pravljenje rezervne kopije je već stavljen u red čekanja. Dobićete imejl sa 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 "Uradite rezervnu kopiju javnih i privatnih fajlova zajedno sa 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' @@ -3373,7 +3279,7 @@ msgstr "Rezervne kopije" msgid "Backups (MB)" msgstr "Rezervne 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 "Neispravni Cron izraz" @@ -3771,15 +3677,6 @@ msgstr "Internet pretraživač nije podržan" msgid "Brute Force Security" msgstr "Brute Force bezbednost" -#. 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 Bucket-a" - -#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71 -msgid "Bucket {0} not found." -msgstr "Bucket {0} nije pronađen." - #. 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 "Masovno brisanje" msgid "Bulk Edit" msgstr "Masovno uređivanje" -#: frappe/public/js/frappe/form/grid.js:1184 +#: frappe/public/js/frappe/form/grid.js:1188 msgid "Bulk Edit {0}" msgstr "Masovno uređivanje {0}" @@ -3830,7 +3727,7 @@ msgstr "Masovna operacija je uspešno završena" #: frappe/public/js/frappe/list/bulk_operations.js:131 msgid "Bulk PDF Export" -msgstr "Masovan izvoz PDV" +msgstr "Masovan izvoz PDF" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -3891,12 +3788,6 @@ msgstr "Na osnovu polja \"Serije imenovanja\"" msgid "By default the title is used as meta title, adding a value here will override it." msgstr "Podrazumevano se koristi naslov kao meta naslov, dodavanje vrednosti ovde će ga izmeniti." -#. 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 "Podrazumevano, imejlovi se šalju samo za neuspešne rezervne 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 @@ -4207,7 +4098,7 @@ msgstr "Nije moguće preuzeti vrednosti" 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" @@ -4227,11 +4118,11 @@ msgstr "Nije moguće otkazati pre podnošenja. Pogledaj tranziciju {0}" msgid "Cannot cancel {0}." msgstr "Nije moguće otkazati {0}." -#: frappe/model/document.py:1012 +#: frappe/model/document.py:1011 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Nije moguće promeniti status dokumenta iz 0 (nacrt) u 2 (otkazan)" -#: frappe/model/document.py:1026 +#: frappe/model/document.py:1025 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Nije moguće promeniti status dokumenta iz 1 (podnet) u 0 (nacrt)" @@ -4314,7 +4205,7 @@ msgstr "Nije moguće urediti standardne grafikone" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Nije moguće urediti standardne izveštaje. Molimo Vas napravite duplikat i kreirajte novi izveštaj" -#: frappe/model/document.py:1032 +#: frappe/model/document.py:1031 msgid "Cannot edit cancelled document" msgstr "Nije moguće urediti otkazan dokument" @@ -4347,11 +4238,11 @@ msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke" msgid "Cannot have multiple printers mapped to a single print format." msgstr "Nije moguće mapirati više štampača na jedan format za štampu." -#: frappe/public/js/frappe/form/grid.js:1128 +#: frappe/public/js/frappe/form/grid.js:1132 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvoziti tabelu sa više od 5000 redova." -#: frappe/model/document.py:1100 +#: frappe/model/document.py:1099 msgid "Cannot link cancelled document: {0}" msgstr "Nije moguće povezati otkazani dokument: {0}" @@ -4367,7 +4258,7 @@ msgstr "Nije moguće upariti kolonu {0} ni sa jednim poljem" msgid "Cannot move row" msgstr "Nije moguće pomeriti 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" @@ -4392,11 +4283,11 @@ msgstr "Nije moguće podneti {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 u komandi sortiraj po" -#: frappe/model/db_query.py:1144 +#: frappe/model/db_query.py:1145 msgid "Cannot use {0} in order/group by" msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po" @@ -4422,7 +4313,7 @@ msgstr "Kartica" msgid "Card Break" msgstr "Prelom 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" @@ -4565,7 +4456,7 @@ msgstr "Konfiguracija dijagrama" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js: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 dijagrama" @@ -4585,7 +4476,7 @@ msgstr "Izvor dijagrama" #. 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 "Vrsta dijagrama" @@ -4647,7 +4538,7 @@ msgstr "Označi ovo ukoliko želiš da nateraš korisnika da odabere seriju pre #. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." -msgstr "" +msgstr "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..." @@ -4699,7 +4590,7 @@ 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/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 "Izaberi postojeću karticu ili kreiraj novu karticu" @@ -4792,10 +4683,6 @@ msgstr "Kliknite ovde" msgid "Click here to verify" msgstr "Kliknite ovde da verifikujete" -#: frappe/integrations/doctype/google_drive/google_drive.js:47 -msgid "Click on Authorize Google Drive Access to authorize Google Drive Access." -msgstr "Kliknite na Odobri pristup Google Drive da biste odobrili pristup Google Drive." - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Kliknite na fajl da ga odaberete." @@ -4822,7 +4709,6 @@ msgstr "Kliknite na link ispod da verifikujete svoj zahtev" #: 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 "Kliknite na {0} da generišete token za osvežavanje." @@ -4996,7 +4882,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sažmi" -#: 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 "Sažmi sve" @@ -5051,9 +4937,9 @@ msgstr "Može se sažeti zavisi od (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js: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 "Limit komentara po času" msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Vidljivost komentara može da ažurira isključivo originalni autor ili sistem menadžer." -#: 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 "Završeno" msgid "Complete By" msgstr "Završeno od strane" -#: 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" @@ -5397,7 +5283,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šite dijagram" @@ -5736,7 +5622,7 @@ msgstr "Ispravna verzija :" msgid "Could not connect to outgoing email server" msgstr "Nije bilo moguće povezati se sa serverom za izlazne imejlove" -#: frappe/model/document.py:1096 +#: frappe/model/document.py:1095 msgid "Could not find {0}" msgstr "Nije bilo moguće pronaći {0}" @@ -5765,7 +5651,7 @@ msgstr "Nije bilo moguće sačuvati, proverite unesene podatke" msgid "Count" msgstr "Brojčano" -#: frappe/public/js/frappe/widgets/widget_dialog.js:527 +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 msgid "Count Customizations" msgstr "Prilagođavanje numeričkog podatka" @@ -5773,10 +5659,14 @@ msgstr "Prilagođavanje numeričkog podatka" #. 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 numeričkog podatka" +#: 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" @@ -5827,7 +5717,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" @@ -5841,13 +5731,13 @@ msgstr "Kreiraj i 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" @@ -5958,7 +5848,7 @@ msgstr "Kreirano" msgid "Created At" msgstr "Kreirano na" -#: 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 "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 na" -#: 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}" @@ -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 "Cron format je neophodan za vrste zadataka sa Cron frekvencijom." @@ -6397,11 +6287,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 @@ -6410,9 +6295,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" @@ -6966,7 +6848,7 @@ msgstr "Kašnjenje" #: 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 "Obriš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 "Obriši i generiši novi" @@ -7018,7 +6900,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Obriš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 "Obriši komentar?" @@ -7104,7 +6986,7 @@ msgstr "Brisanje {0}" msgid "Deleting {0} records..." msgstr "Brisanje {0} zapisa..." -#: frappe/public/js/frappe/model/model.js:741 +#: frappe/public/js/frappe/model/model.js:692 msgid "Deleting {0}..." msgstr "Brisanje {0}..." @@ -7150,7 +7032,7 @@ msgstr "Odeljenje" #. 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" @@ -7264,6 +7146,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 @@ -7561,14 +7444,10 @@ msgstr "Nemoj kreirati novog korisnika " msgid "Do not create new user if user with email does not exist in the system" msgstr "Nemoj kreirati novog korisnika ukoliko korisnik sa tim imejlom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1189 +#: frappe/public/js/frappe/form/grid.js:1193 msgid "Do not edit headers which are preset in the template" msgstr "Nemoj uređivati zaglavlja koja su unapred 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 ovom skladištu {0}." - #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Da li još uvek želite da nastavite?" @@ -7704,7 +7583,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" @@ -7764,7 +7643,7 @@ msgstr "DocType ne može biti modifikovan, molimo Vas da koristite {0} umesto to #. 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" @@ -7882,7 +7761,7 @@ msgstr "Uslov pravila imenovanja dokumenta" msgid "Document Naming Settings" msgstr "Podešavanje imenovanja dokumenata" -#: frappe/model/document.py:477 +#: frappe/model/document.py:476 msgid "Document Queued" msgstr "Dokument u redu za obradu" @@ -7935,7 +7814,7 @@ msgstr "Izveštaj o deljenju 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" @@ -8006,11 +7885,11 @@ msgstr "Vrsta dokumenta" msgid "Document Type and Function are required to create a number card" msgstr "Vrsta i funkcija dokumenta su neophodne da bi se kreirala brojčana kartica" -#: frappe/permissions.py:148 +#: frappe/permissions.py:149 msgid "Document Type is not importable" msgstr "Vrstu dokumenta nije moguće uvoziti" -#: frappe/permissions.py:144 +#: frappe/permissions.py:145 msgid "Document Type is not submittable" msgstr "Vrstu dokumenta nije moguće podneti" @@ -8039,7 +7918,7 @@ msgid "Document Types and Permissions" msgstr "Vrste i dozvole dokumenta" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1943 +#: frappe/model/document.py:1942 msgid "Document Unlocked" msgstr "Dokument je otključan" @@ -8230,7 +8109,7 @@ msgstr "Preuzmi link" 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 izveštaj" @@ -8241,13 +8120,13 @@ msgstr "Preuzmi šablon" #: 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 "Preuzmite Vaše podatke" #: frappe/core/doctype/prepared_report/prepared_report.js:49 msgid "Download as CSV" -msgstr "" +msgstr "Preuzmi kao CSV" #: frappe/contacts/doctype/contact/contact.js:98 msgid "Download vCard" @@ -8297,29 +8176,6 @@ msgstr "Prevuci da dodaš stanje" msgid "Drop files here" msgstr "Otpusti fajlove ovde" -#. 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 pristupni 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 token za osvežavanje" - -#. 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 "Podešavanje Dropbox" - -#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347 -msgid "Dropbox Setup" -msgstr "Postavke Dropbox" - #. Label of the section_break_2 (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json @@ -8349,13 +8205,13 @@ msgstr "Duplikat unosa" msgid "Duplicate Filter Name" msgstr "Duplikat 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 "Duplikat naziva" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate Row" -msgstr "" +msgstr "Duplikat reda" #: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" @@ -8448,13 +8304,13 @@ msgstr "IZLAZ" #: 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 "Uredite Vaš odgovor" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Vizualno uredite svoj radni tok pomoću uređivača 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}" @@ -8718,7 +8574,7 @@ msgstr "Imejl nalog onemogućen." msgid "Email Account Name" msgstr "Naziv imejl naloga" -#: frappe/core/doctype/user/user.py:736 +#: frappe/core/doctype/user/user.py:738 msgid "Email Account added multiple times" msgstr "Imejl nalog je dodat više puta" @@ -8726,9 +8582,9 @@ msgstr "Imejl nalog je dodat više puta" msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "Imejl nalog nije postavljen. Molimo Vas da kreirate novi imejl nalog kroz Podešavanje > Imejl nalog" -#: frappe/email/doctype/email_account/email_account.py:578 +#: frappe/email/doctype/email_account/email_account.py:576 msgid "Email Account {0} Disabled" -msgstr "" +msgstr "Imejl nalog {0} je onemogućen" #. Label of the email_id (Data) field in DocType 'Address' #. Label of the email_id (Data) field in DocType 'Contact' @@ -8952,7 +8808,7 @@ msgstr "Imejlovi" msgid "Emails Pulled" msgstr "Imejlovi preuzeti" -#: 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 "Imejlovi se već preuzimaju sa ovog naloga." @@ -8975,11 +8831,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" @@ -8999,11 +8853,6 @@ msgstr "Omogući dozvolu za automatsko ponavljanje za doctype {0} u polju prilag 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 automatsku rezervnu kopiju" - #. 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 "Omogući praćenje veb-sajta unutar aplikacije" #. 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 "Omogući praćenje veb-sajta unutar aplikacije" #: 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 "Omogućeno" msgid "Enabled Scheduler" msgstr "Planer 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ći prijemnu poštu imejla za korisnika {0}" @@ -9268,11 +9115,6 @@ msgstr "Datum završetka ne može biti pre datuma početka!" msgid "Ended At" msgstr "Završeno u" -#. 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 "Endpoint 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 "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/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 pri povezivanju sa imejl nalogom {0}" @@ -9459,15 +9301,15 @@ msgstr "Greška pri povezivanju sa imejl nalogom {0}" msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška pri obradi obaveštenja {0}. Molimo Vas da ispravite Vaš šablon." -#: frappe/model/base_document.py: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: Vrednost nedostaje 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}: Vrednost nedostaje za: {2}" @@ -9610,13 +9452,13 @@ msgstr "Izvrši skriptu u konzoli" #: frappe/public/js/frappe/ui/dropdown_console.js:125 msgid "Executing Code" -msgstr "" +msgstr "Izvršavanje koda" #: frappe/desk/doctype/system_console/system_console.js:18 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 "Vreme izvršavanja: {0} sekundi" @@ -9642,7 +9484,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 "Proširi sve" @@ -9699,8 +9541,8 @@ msgstr "Vreme isteka stranica sa QR kodom" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js: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" @@ -9751,11 +9593,11 @@ msgstr "Izvoz izveštaja: {0}" msgid "Export Type" msgstr "Vrsta 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 "Izvoz svih redova koji se podudaraju?" -#: 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 "Izvoz svih {0} redova?" @@ -10063,8 +9905,8 @@ msgstr "Preuzmi podrazumevane dokumente za globalnu pretragu." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js: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 "Vrsta polja ne može biti promenjena za {0}" msgid "Field {0} does not exist on {1}" msgstr "Polje {0} ne postoji u {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 doctype {1}." @@ -10242,7 +10084,7 @@ msgstr "Polja za više označavanja" msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl" -#: 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 opcija as_list omogućena" @@ -10291,13 +10133,6 @@ msgstr "Fajl \"{0}\" je preskočen zbog nevažeće vrste fajla" msgid "File '{0}' not found" msgstr "Fajl '{0}' nije pronađen" -#. 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 "Rezervna kopija fajla" - #. Label of the private_file_section (Section Break) field in DocType 'Access #. Log' #: frappe/core/doctype/access_log/access_log.json @@ -10457,7 +10292,7 @@ msgstr "Filtrirani po \"{0}\"" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/notification/notification.json msgid "Filters" -msgstr "FIlteri" +msgstr "Filteri" #. Label of the filters_config (Code) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -10498,7 +10333,7 @@ msgstr "Filteri će biti dostupni putem filtera.

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:" @@ -10645,7 +10480,7 @@ msgstr "Sledeći filteri izveštaja imaju nedostajuće vrednosti:" msgid "Following document {0}" msgstr "Sledeći 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 "Sledeća polja nedostaju:" @@ -10653,7 +10488,7 @@ msgstr "Sledeća polja nedostaju:" msgid "Following fields have invalid values:" msgstr "Sledeća polja imaju nevažeće vrednosti:" -#: 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 "Sledeća polja imaju nedostajuće vrednosti" @@ -10796,7 +10631,7 @@ msgstr "Za dokument" msgid "For Document Type" msgstr "Za vrstu 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 primer: {} otvoren" @@ -10826,7 +10661,7 @@ msgstr "Za korisnika" msgid "For Value" msgstr "Za vrednost" -#: 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 or =324. Za opsege, koristite 5:10 (za vrednosti između 5 i 10)." @@ -10871,7 +10706,7 @@ msgstr "Za više adresa, unesite adrese u različitim redovima, na primer e.g. t #: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." -msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone." +msgstr "Za ažuriranje, možete ažurirati samo određene kolone." #: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" @@ -10979,7 +10814,7 @@ msgstr "URL-kodiran obrazac" #. 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" @@ -11011,7 +10846,7 @@ msgstr "Jedinica 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,9 +10861,9 @@ msgstr "Frappe Light" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Frappe Mail" -msgstr "Frappe imejl" +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 imejl OAuth greška" @@ -11056,13 +10891,11 @@ msgstr "Besplatno" #. 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" @@ -11108,7 +10941,7 @@ msgstr "Datum početka" msgid "From Date Field" msgstr "Polje za datum početka" -#: 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 vrste dokumenta" @@ -11159,16 +10992,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 listi dozvoljenih." @@ -11233,7 +11066,7 @@ msgstr "Opšte" 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 izveštaj" @@ -11521,32 +11354,12 @@ msgstr "Google Contacts - Nije moguće ažurirati kontakt u Google Contacts {0}, msgid "Google Contacts Id" msgstr "Google Contacts 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 - Nije moguće kreirati datoteku u Google Drive - 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 Drive - Nije moguće pronaći datoteku u Google Drive - Kod greške {0}" - -#: frappe/integrations/doctype/google_drive/google_drive.py:193 -msgid "Google Drive - Could not locate - {0}" -msgstr "Google Drive - Nije moguće pronaći - {0}" - -#: frappe/integrations/doctype/google_drive/google_drive.py:204 -msgid "Google Drive Backup Successful." -msgstr "Rezervna kopija na Google Drive je uspešno završena." - #. Label of the section_break_7 (Section Break) field in DocType 'Google #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json @@ -11818,7 +11631,7 @@ msgstr "Poseduje ulogu" #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Has Setup Wizard" -msgstr "" +msgstr "Sadrži čarobnjak za postavke" #. Label of the has_web_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -11876,6 +11689,10 @@ msgstr "Skripte za zaglavlje/podnožje mogu se koristiti za dodavanje dinamičko msgid "Headers" msgstr "Zaglavlja" +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "Zaglavlja moraju biti u formatu rečnika" + #. 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 "Početna stranica" msgid "Home Settings" msgstr "Podešavanje početne stranice" -#: 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 stranica/Test datoteka 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 stranica/Test datoteka 1/Test datoteka 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 stranica/Test datoteka 2" @@ -12254,7 +12071,7 @@ msgstr "Izgleda da još uvek nemaš pristup nijednom radnom prostoru, uvek može #: 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 "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" @@ -12450,12 +12267,6 @@ msgstr "Ukoliko je omogućeno, korisnici koji se prijavljuju sa ograničenih IP msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." msgstr "Ukoliko je omogućeno, korisnici će biti obavešteni svaki put kada se prijave. Ukoliko nije omogućeno, biće obaveš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 "Ukoliko je prazno, rezervna kopija će se čuvati u korenskom direktorijumu bucket-a." - #. 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 "Ignoriši 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 "Nevažeći pristupni token. Molimo Vas da pokušate ponovo" - #: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" msgstr "Nevažeći 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 "Nevažeći SQL upit" @@ -12944,11 +12751,11 @@ msgstr "Uključi temu iz aplikacija" msgid "Include Web View Link in Email" msgstr "Uključi link ka veb-prikazu u imejlu" -#: frappe/public/js/frappe/views/reports/query_report.js: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 indentaciju" @@ -13015,11 +12822,11 @@ msgstr "Pogrešno korisničko ime ili lozinka" msgid "Incorrect Verification code" msgstr "Pogrešan verifikacioni kod" -#: frappe/model/document.py:1542 +#: frappe/model/document.py:1541 msgid "Incorrect value in row {0}:" msgstr "Pogrešna vrednost u redu {0}:" -#: frappe/model/document.py:1544 +#: frappe/model/document.py:1543 msgid "Incorrect value:" msgstr "Pogrešna vrednost:" @@ -13028,10 +12835,10 @@ msgstr "Pogrešna vrednost:" #. 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" @@ -13106,7 +12913,7 @@ msgstr "Unesi iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1822 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 msgid "Insert After" msgstr "Unesi nakon" @@ -13122,7 +12929,7 @@ msgstr "Polje za unos nakon polja '{0}' pomenutog u prilagođenom polju '{1}', s msgid "Insert Below" msgstr "Unesi pre" -#: 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 "Unesi kolonu pre {0}" @@ -13171,11 +12978,11 @@ msgstr "Uputstva" msgid "Instructions Emailed" msgstr "Uputstva poslata imejlom" -#: frappe/permissions.py:818 +#: frappe/permissions.py:827 msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan nivo ovlašćena za {0}" -#: frappe/database/query.py:376 +#: frappe/database/query.py:383 msgid "Insufficient Permission for {0}" msgstr "Nedovoljna ovlašćena za {0}" @@ -13293,7 +13100,7 @@ msgstr "Nevažeće" #: 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 \"depends_on\" izraz" @@ -13333,7 +13140,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}" @@ -13378,6 +13185,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" @@ -13402,7 +13210,7 @@ msgstr "Nevažeća izmena" 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" @@ -13431,7 +13239,7 @@ msgstr "Nevažeće 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" @@ -13452,11 +13260,11 @@ msgstr "Nevažeća tajna za Webhook" 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" @@ -13480,7 +13288,7 @@ 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: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}" @@ -13506,7 +13314,7 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz" msgid "Invalid redirect regex in row #{}: {}" msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}" -#: frappe/app.py:324 +#: frappe/app.py:317 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahteva" @@ -13690,7 +13498,7 @@ msgstr "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 "Upitni izveštaj" @@ -13704,7 +13512,7 @@ msgstr "Udaljeni zahtev?" #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Is Setup Complete?" -msgstr "" +msgstr "Da li je postavka završena?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' @@ -13905,6 +13713,10 @@ msgstr "Status zadatka" msgid "Job Stopped Successfully" msgstr "Zadatak je uspešno zaustavljen" +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "Zadatak je u stanju {0} i ne može biti otkazan" + #: frappe/core/doctype/rq_job/rq_job.py:113 msgid "Job is not running." msgstr "Zadatak nije pokrenut." @@ -13936,7 +13748,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 tabla" @@ -14208,10 +14020,10 @@ msgstr "LDAP podešavanja nisu ispravna. Odgovor na validaciju: {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 @@ -14241,7 +14053,7 @@ msgstr "Ciljna stranica" #: frappe/public/js/frappe/form/print_utils.js:30 msgid "Landscape" -msgstr "Landscape" +msgstr "Pejzažni" #. Name of a DocType #. Label of the language (Link) field in DocType 'System Settings' @@ -14296,11 +14108,6 @@ msgstr "Poslednjih 90 dana" msgid "Last Active" msgstr "Poslednja 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 "Poslednja rezervna 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" @@ -14385,12 +14192,12 @@ msgstr "Poslednja sinhronizacija u" msgid "Last Synced On" msgstr "Poslednja sinhronizacija na" -#: 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 "Poslednje ažuriranje od strane" -#: 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 "Poslednje ažuriranje na" @@ -14434,7 +14241,7 @@ msgid "Leave blank to repeat always" msgstr "Ostavi prazno da se uvek 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 ovaj razgovor" @@ -14653,7 +14460,7 @@ msgstr "Lajk na {0}: {1}" msgid "Liked" msgstr "Lajkovano" -#: 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 "Lajkovano do strane" @@ -14668,11 +14475,6 @@ msgstr "Lajkovanja" 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 "Ograniči broj rezervnih kopija baze podataka" - #. 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 "Naslov linka" #: 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 ka" -#: 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 ka u redu" @@ -14804,7 +14606,7 @@ msgstr "Link ka u redu" msgid "Link Type" msgstr "Vrsta linka" -#: frappe/public/js/frappe/widgets/widget_dialog.js:346 +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 msgid "Link Type in Row" msgstr "Vrsta linka u redu" @@ -14956,7 +14758,7 @@ msgstr "Učita više" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1085 +#: frappe/public/js/frappe/views/reports/query_report.js:1087 msgid "Loading" msgstr "Učitavanje" @@ -14996,7 +14798,7 @@ msgstr "Evidencija" #. Label of the log_api_requests (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Log API Requests" -msgstr "" +msgstr "Izvrši zapisivanje API zahteva" #. Label of the log_data_section (Section Break) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -15073,7 +14875,7 @@ msgstr "Prijava nije uspela, pokušajte ponovo" #: frappe/email/doctype/email_account/email_account.py:144 msgid "Login Id is required" -msgstr "Potreba je ID za prijavu" +msgstr "Neophodan je ID za prijavu" #. Label of the login_methods_section (Section Break) field in DocType 'System #. Settings' @@ -15087,7 +14889,7 @@ msgstr "Načini prijave" msgid "Login Page" msgstr "Stranica za prijavu" -#: frappe/www/login.py:152 +#: frappe/www/login.py:156 msgid "Login To {0}" msgstr "Prijava na {0}" @@ -15354,7 +15156,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 obavezni podaci:" @@ -15523,7 +15325,7 @@ msgstr "Maksimalna dužina" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max Report Rows" -msgstr "" +msgstr "Maksimalan broj redova izveštaja" #. Label of the max_value (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -15629,7 +15431,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" @@ -15808,7 +15610,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" @@ -15885,7 +15687,7 @@ msgstr "Pogrešno konfigurisano" msgid "Miss" msgstr "Propušteno" -#: frappe/desk/form/meta.py:218 +#: frappe/desk/form/meta.py:194 msgid "Missing DocType" msgstr "Nedostajući DocType" @@ -15910,7 +15712,7 @@ msgid "Missing Value" msgstr "Nedostajuće vrednosti" #: 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" @@ -16041,7 +15843,7 @@ msgstr "Modul za izvoz" #: frappe/modules/utils.py:273 msgid "Module {} not found" -msgstr "Module {} nije pronađen" +msgstr "Modul {} nije pronađen" #. Group in Package's connections #. Label of a Card Break in the Build Workspace @@ -16093,8 +15895,6 @@ msgstr "Mesec" #. 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 "Mesec" #: 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 "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" @@ -16442,7 +16241,7 @@ msgstr "Podešavanje navigacije" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privatni radni prostor drugih korisnika" -#: frappe/model/document.py:793 +#: frappe/model/document.py:792 msgid "Negative Value" msgstr "Negativna vrednost" @@ -16547,7 +16346,7 @@ msgstr "Nova poruka sa kontakt stranice veb-sajta" #. 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 "Novi naziv" @@ -16581,7 +16380,7 @@ msgstr "Novi naziv formata štampe" 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 izveštaja" @@ -16637,26 +16436,26 @@ msgstr "Nova vrednost treba da bude postavljena" #: 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} dodat u kontrolnu 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" @@ -16668,7 +16467,7 @@ msgstr "Novi {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Novi {} verzije za sledeće aplikacija su dostupne" -#: frappe/core/doctype/user/user.py: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." @@ -16830,7 +16629,7 @@ msgstr "Sledeće na klik" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js: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" @@ -16971,7 +16770,7 @@ msgstr "Nema rezultata" msgid "No Results found" msgstr "Nijedan rezultat nije pronađen" -#: frappe/core/doctype/user/user.py:803 +#: frappe/core/doctype/user/user.py:805 msgid "No Roles Specified" msgstr "Uloge nisu navedene" @@ -17122,7 +16921,7 @@ msgstr "Broj redova (maksimalno 500)" msgid "No of Sent SMS" msgstr "Broj poslatih SMS poruka" -#: 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 "Ne postoji dozvola za {0}" @@ -17131,7 +16930,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Ne postoji dozvola za '{0}' {1}" -#: frappe/model/db_query.py:949 +#: frappe/model/db_query.py:950 msgid "No permission to read {0}" msgstr "Ne postoji dozvola za čitanje {0}" @@ -17215,12 +17014,6 @@ msgstr "Nije negativna vrednost" msgid "Non-Conforming" msgstr "Nepodudaran" -#. 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 "Nijednom" - #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Nijedno: Kraj radnog toka" @@ -17235,7 +17028,7 @@ msgstr "Normalizovane kopije" msgid "Normalized Query" msgstr "Normalizovani upiti" -#: 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" @@ -17256,7 +17049,7 @@ msgstr "Nisu potomci 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" @@ -17282,9 +17075,9 @@ msgstr "Nije povezani ni sa jednim zapisom" msgid "Not Nullable" msgstr "Ne može biti prazno" -#: 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 "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" @@ -17336,7 +17129,7 @@ msgstr "Nije postavljeno" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Nevažeći Comma Separated Value (CSV fajl)" -#: frappe/core/doctype/user/user.py:264 +#: frappe/core/doctype/user/user.py:265 msgid "Not a valid User Image." msgstr "Nevažeća slika korisnika." @@ -17352,7 +17145,7 @@ msgstr "Nevaž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}" @@ -17372,7 +17165,7 @@ msgstr "Nije dozvoljeno štampanje otkazanih dokumenata" msgid "Not allowed to print draft documents" msgstr "Nije dozvoljeno štampanje dokumenata u nacrtu" -#: frappe/permissions.py:212 +#: frappe/permissions.py:213 msgid "Not allowed via controller permission check" msgstr "Nije dozvoljeno prema proverenim dozvolama kontrolera" @@ -17388,12 +17181,12 @@ msgstr "Nije u razvojnom režimu" msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Prilagođeni' DocType." -#: frappe/core/doctype/system_settings/system_settings.py: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" @@ -17419,15 +17212,6 @@ msgstr "Napomena viđena od strane" 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: Podrazumevano se šalju imejlovi za neuspele rezervne kopije." - #: frappe/public/js/frappe/utils/utils.js:775 msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "Napomena: Promena naziva stranica će prekinuti prethodni URL ka ovoj stranici." @@ -17487,13 +17271,10 @@ msgstr "Nema ničega 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 "Obaveštenje" @@ -17595,7 +17376,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 "Brojčana kartica" @@ -17613,7 +17394,7 @@ msgstr "Naziv brojčane 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 "Brojčane kartice" @@ -17631,15 +17412,6 @@ msgstr "Format broja" msgid "Number of Backups" msgstr "Broj rezervnih 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 rezervnih kopija baze podataka" - -#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54 -msgid "Number of DB backups cannot be less than 1" -msgstr "Broj rezervnih 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" @@ -17655,7 +17427,7 @@ msgstr "Brup upita" msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja za priložene fajlove je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:169 +#: frappe/core/doctype/system_settings/system_settings.py:170 msgid "Number of backups must be greater than zero." msgstr "Broj rezervnih kopija mora biti veći od nule." @@ -17884,7 +17656,7 @@ msgstr "Na {0}, {1} je napisao/la:" #. 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 "Uvodna obuka" @@ -17980,19 +17752,13 @@ 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" -#. 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 "Menjajte ovo isključivo ukoliko želite da koristite druge S3 kompatibilne pozadinske sisteme za skladištenje objekata." - -#: frappe/model/document.py:1232 +#: frappe/model/document.py:1231 msgid "Only draft documents can be discarded" msgstr "Isključivo nacrti dokumenata mogu biti odbačeni" #. 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 "Isključivo za" @@ -18107,7 +17873,7 @@ msgstr "Otvori modul ili alat" #: frappe/public/js/frappe/ui/keyboard.js:366 msgid "Open console" -msgstr "" +msgstr "Otvori konzolu" #: frappe/public/js/print_format_builder/Preview.vue:17 msgid "Open in a new tab" @@ -18241,7 +18007,7 @@ msgstr "Opcije za {0} moraju biti podešene pre nego što se postavi podrazumeva msgid "Options is required for field {0} of type {1}" msgstr "Opcije su neophodne za polje {0} vrste {1}" -#: frappe/model/base_document.py:870 +#: frappe/model/base_document.py:871 msgid "Options not set for link field {0}" msgstr "Opcije nisu postavljene za link polje {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 "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:798 +#: frappe/permissions.py:807 msgid "Parentfield not specified in {0}: {1}" msgstr "Matično polje nije navedeno u {0}: {1}" @@ -18712,11 +18478,11 @@ msgstr "Pasivan" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1079 +#: frappe/core/doctype/user/user.py:1081 msgid "Password Email Sent" msgstr "Imejl sa lozinkom poslat" -#: frappe/core/doctype/user/user.py:457 +#: frappe/core/doctype/user/user.py:458 msgid "Password Reset" msgstr "Resetovanje lozinke" @@ -18750,7 +18516,7 @@ msgstr "Lozinka nije uneta u imejl nalogu" msgid "Password not found for {0} {1} {2}" msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1078 +#: frappe/core/doctype/user/user.py:1080 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}" @@ -18762,7 +18528,7 @@ msgstr "Lozinka postavljena" msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke premašuje dozvoljenu granicu" -#: frappe/core/doctype/user/user.py:869 +#: frappe/core/doctype/user/user.py:871 msgid "Password size exceeded the maximum allowed size." msgstr "Veličine lozinke premašuje dozvoljenu granicu." @@ -18919,7 +18685,7 @@ msgstr "Trajno odbaciti {0}?" msgid "Permanently Submit {0}?" msgstr "Trajno podneti {0}?" -#: frappe/public/js/frappe/model/model.js:733 +#: frappe/public/js/frappe/model/model.js:684 msgid "Permanently delete {0}?" msgstr "Trajno obrisati {0}?" @@ -19080,8 +18846,8 @@ msgid "Phone Number {0} set in field {1} is not valid." msgstr "Broj telefona {0} postavljen u polju {1} nije validan." #: frappe/public/js/frappe/form/print_utils.js:40 -#: frappe/public/js/frappe/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 "Izaberite kolone" @@ -19121,7 +18887,7 @@ msgstr "Obični tekst" msgid "Plant" msgstr "Postrojenje" -#: 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 "Molimo Vas da autorizujete OAuth za imejl nalog {0}" @@ -19137,7 +18903,7 @@ msgstr "Molimo Vas da duplirate ovu temu veb-sajta da biste je prilagodili." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Molimo Vas da instalirate Idap3 biblioteku putem pip-a da biste koristili Idap funkcionalnost." -#: frappe/public/js/frappe/views/reports/query_report.js:309 +#: frappe/public/js/frappe/views/reports/query_report.js:307 msgid "Please Set Chart" msgstr "Molimo Vas da postavite grafikon" @@ -19153,7 +18919,7 @@ msgstr "Molimo Vas da dodate naslov u Vaš imejl" msgid "Please add a valid comment." msgstr "Molimo Vas da dodate validan komentar." -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1063 msgid "Please ask your administrator to verify your sign-up" msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registraciju" @@ -19181,11 +18947,11 @@ msgstr "Molimo Vas da proverite URL za OpenID konfiguraciju" msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Molimo Vas da proverite vrednosti filtera postavljene za grafikon za kontrolnoj tabli: {}" -#: frappe/model/base_document.py:946 +#: frappe/model/base_document.py:951 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Molimo Vas da proverite vrednosti polja \"Preuzmi iz\" postavljenih za polje {0}" -#: frappe/core/doctype/user/user.py:1059 +#: frappe/core/doctype/user/user.py:1061 msgid "Please check your email for verification" msgstr "Molimo Vas da proverite svoj imejl za verifikaciju" @@ -19213,10 +18979,6 @@ msgstr "Molimo Vas da kliknete na sledeći link i pratite uputstva na stranici. msgid "Please click on the following link to set your new password" msgstr "Molimo Vas da kliknete na sledeći link da biste postavili novu lozinku" -#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343 -msgid "Please close this window" -msgstr "Molimo Vas da zatvorite ovaj prozor" - #: frappe/www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." msgstr "Molimo Vas da potvrdite svoju radnju kako biste {0} ovaj dokument." @@ -19233,7 +18995,7 @@ msgstr "Molimo Vas da prvo kreirate karticu" msgid "Please create chart first" msgstr "Molimo Vas da prvo kreirate 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 "Molimo Vas da obrišete polje iz {0} ili da dodate neophodni doctype." @@ -19245,7 +19007,7 @@ msgstr "Molimo Vas da ne menjate naslove šablona." msgid "Please duplicate this to make changes" msgstr "Molimo Vas duplirate ovo kako biste napravili izmene" -#: 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 "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem društvenih mreža ili LADP ili prijavljivanje putem imejl linka pre nego što onemogućite prijavu pomoću korisničkog imena i lozinke." @@ -19263,7 +19025,7 @@ msgstr "Molimo Vas da omogućite iskačuće prozore" msgid "Please enable pop-ups in your browser" msgstr "Molimo Vas da omogućite iskačuće prozore u Vašem internet pretraživaču" -#: frappe/integrations/google_oauth.py:53 +#: frappe/integrations/google_oauth.py:55 msgid "Please enable {} before continuing." msgstr "Molimo Vas da omogućite {} pre nego što nastavite." @@ -19340,7 +19102,7 @@ msgstr "Molimo Vas da se prijavite kako biste ostavili komentar." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Molimo Vas da se uverite da dokumenti referentne komunikacije nisu kružno povezani." -#: frappe/model/document.py:987 +#: frappe/model/document.py:986 msgid "Please refresh to get the latest document." msgstr "Molimo Vas da osvežite kako biste dobili najnoviji dokument." @@ -19364,7 +19126,7 @@ msgstr "Molimo Vas da sačuvate dokument pre dodeljivanja" msgid "Please save the document before removing assignment" msgstr "Molimo Vas da sačuvate dokument pre uklanjanja dodeljivanja" -#: 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 "Molimo Vas da prvo sačuvate izveštaj" @@ -19380,11 +19142,11 @@ msgstr "Molimo Vas da prvo izaberete DocType" msgid "Please select Entity Type first" msgstr "Molimo Vas da prvo izaberete vrstu entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:112 +#: frappe/core/doctype/system_settings/system_settings.py:113 msgid "Please select Minimum Password Score" msgstr "Molimo Vas da odaberete minimalnu ocenu jačine lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1181 +#: frappe/public/js/frappe/views/reports/query_report.js:1183 msgid "Please select X and Y fields" msgstr "Molimo Vas da izaberete X i Y polja" @@ -19412,7 +19174,7 @@ msgstr "Molimo Vas da izaberete važeći filter da datum" msgid "Please select applicable Doctypes" msgstr "Molimo Vas da izaberete primenjive DocType-ove" -#: frappe/model/db_query.py:1140 +#: frappe/model/db_query.py:1141 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Molimo Vas da izaberete barem 1 kolonu iz {0} za sortiranje/grupisanje" @@ -19434,10 +19196,6 @@ msgstr "Molimo Vas da izaberete LDAP direktorijum koji se koristi" msgid "Please select {0}" msgstr "Molimo Vas da izaberete {0}" -#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305 -msgid "Please set Dropbox access keys in site config or doctype" -msgstr "Molimo Vas da postavite Dropbox pristupne ključeve u konfiguraciji sajta ili doctype" - #: frappe/contacts/doctype/contact/contact.py:298 msgid "Please set Email Address" msgstr "Molimo Vas da postavite imejl adresu" @@ -19446,7 +19204,7 @@ msgstr "Molimo Vas da postavite imejl adresu" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Molimo Vas da postavite mapiranje štampača za ovaj format štampe u podešavanjima štampe" -#: frappe/public/js/frappe/views/reports/query_report.js:1404 +#: frappe/public/js/frappe/views/reports/query_report.js:1406 msgid "Please set filters" msgstr "Molimo Vas da postavite filtere" @@ -19466,7 +19224,7 @@ msgstr "Molimo Vas da prvo postavite sledeća dokumenta u ovoj kontrolnoj tabli msgid "Please set the series to be used." msgstr "Molimo Vas da postavite seriju koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py: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 "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autentifikacije, putem SMS podešavanja" @@ -19474,19 +19232,19 @@ msgstr "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autenti msgid "Please setup a message first" msgstr "Molimo Vas da prvo postavite poruku" -#: frappe/core/doctype/user/user.py:422 +#: frappe/core/doctype/user/user.py:423 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Podešavanja > Imejl nalog" -#: 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 "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Alati > Imejl nalog" -#: frappe/public/js/frappe/model/model.js:823 +#: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" msgstr "Molimo Vas da navedete" -#: frappe/permissions.py:774 +#: frappe/permissions.py:783 msgid "Please specify a valid parent DocType for {0}" msgstr "Molimo Vas da navedete važeći matični DocType za {0}" @@ -19515,7 +19273,7 @@ msgstr "Molimo Vas da navedete koje polje za vrednost mora biti provereno" msgid "Please try again" msgstr "Molimo Vas da pokušate ponovo" -#: frappe/integrations/google_oauth.py:56 +#: frappe/integrations/google_oauth.py:58 msgid "Please update {} before continuing." msgstr "Molimo Vas da ažurirate {} pre nego što nastavite." @@ -19828,8 +19586,8 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto #: frappe/public/js/frappe/form/toolbar.js:357 #: frappe/public/js/frappe/form/toolbar.js:369 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js: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 "Štampa" @@ -20072,7 +19830,7 @@ msgstr "Savet: Dodaje 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 090/108] 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 091/108] 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 092/108] 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 093/108] 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 094/108] 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 095/108] 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 096/108] 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 097/108] 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 098/108] 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 099/108] 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 09060637fac62cb8c3cdd41b685d39146959cff6 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 24 Jun 2025 19:37:33 +0530 Subject: [PATCH 100/108] 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 101/108] 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 bdab7e30f84de08e54aca7ebed76fc6ef796d8e8 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 25 Jun 2025 11:15:57 +0530 Subject: [PATCH 102/108] 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 103/108] 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 104/108] 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 105/108] 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 106/108] 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 107/108] 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 108/108] 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());