diff --git a/.github/helper/documentation.py b/.github/helper/documentation.py index eb0b373acd..8156137e3f 100644 --- a/.github/helper/documentation.py +++ b/.github/helper/documentation.py @@ -1,7 +1,7 @@ import sys -import requests from urllib.parse import urlparse +import requests docs_repos = [ "frappe_docs", diff --git a/frappe/boot.py b/frappe/boot.py index 0fe5f93c3e..31e101aedc 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -101,6 +101,7 @@ def get_bootinfo(): bootinfo.app_logo_url = get_app_logo() bootinfo.link_title_doctypes = get_link_title_doctypes() bootinfo.translated_doctypes = get_translated_doctypes() + bootinfo.subscription_expiry = add_subscription_expiry() return bootinfo @@ -428,3 +429,10 @@ def load_currency_docs(bootinfo): ) bootinfo.docs += currency_docs + + +def add_subscription_expiry(): + try: + return frappe.conf.subscription["expiry"] + except Exception: + return "" diff --git a/frappe/core/doctype/report/report.js b/frappe/core/doctype/report/report.js index 0e0bfeea9a..9850dbf98f 100644 --- a/frappe/core/doctype/report/report.js +++ b/frappe/core/doctype/report/report.js @@ -31,7 +31,6 @@ frappe.ui.form.on("Report", { ); } - if (doc.is_standard === "Yes" && frm.perm[0].write) { frm.add_custom_button( doc.disabled ? __("Enable Report") : __("Disable Report"), diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index fddf4f1120..8d2f1df973 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -293,13 +293,6 @@ def get_group_by_chart_config(chart, filters): ) if data: - if chart.number_of_groups and chart.number_of_groups < len(data): - other_count = 0 - for i in range(chart.number_of_groups - 1, len(data)): - other_count += data[i]["count"] - data = data[0 : chart.number_of_groups - 1] - data.append({"name": "Other", "count": other_count}) - chart_config = { "labels": [item["name"] if item["name"] else "Not Specified" for item in data], "datasets": [{"name": chart.name, "values": [item["count"] for item in data]}], diff --git a/frappe/hooks.py b/frappe/hooks.py index 9715508c78..73327f0ab1 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -222,6 +222,7 @@ scheduler_events = { "frappe.email.doctype.unhandled_email.unhandled_email.remove_old_unhandled_emails", "frappe.core.doctype.prepared_report.prepared_report.delete_expired_prepared_reports", "frappe.core.doctype.log_settings.log_settings.run_log_clean_up", + "frappe.utils.subscription.enable_manage_subscription", ], "daily_long": [ "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_daily", diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 3cdc2e4c1d..c6b3707b5c 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -152,8 +152,9 @@ class BaseDocument: if "name" in d: self.name = d["name"] + ignore_children = hasattr(self, "flags") and self.flags.ignore_children for key, value in d.items(): - self.set(key, value) + self.set(key, value, as_value=ignore_children) return self @@ -1174,7 +1175,10 @@ class BaseDocument: # get values from old doc if self.get("parent_doc"): parent_doc = self.parent_doc.get_latest() - ref_doc = [d for d in parent_doc.get(self.parentfield) if d.name == self.name][0] + child_docs = [d for d in parent_doc.get(self.parentfield) if d.name == self.name] + if not child_docs: + return + ref_doc = child_docs[0] else: ref_doc = self.get_latest() diff --git a/frappe/model/document.py b/frappe/model/document.py index aa55eac30a..ea965151eb 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -129,6 +129,7 @@ class Document(BaseDocument): def load_from_db(self): """Load document and children from database and create properties from fields""" + self.flags.ignore_children = True if not getattr(self, "_metaclass", False) and self.meta.issingle: single_doc = frappe.db.get_singles_dict(self.doctype, for_update=self.flags.for_update) if not single_doc: @@ -150,6 +151,7 @@ class Document(BaseDocument): ) super().__init__(d) + self.flags.pop("ignore_children", None) for df in self._get_table_fields(): # Make sure not to query the DB for a child table, if it is a virtual one. diff --git a/frappe/patches.txt b/frappe/patches.txt index 2564a565b1..24b07012da 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -213,3 +213,4 @@ frappe.patches.v14_0.update_multistep_webforms execute:frappe.delete_doc('Page', 'background_jobs', ignore_missing=True, force=True) frappe.patches.v14_0.drop_unused_indexes frappe.patches.v15_0.drop_modified_index +frappe.patches.v14_0.add_manage_subscriptions_in_navbar_settings diff --git a/frappe/patches/v14_0/add_manage_subscriptions_in_navbar_settings.py b/frappe/patches/v14_0/add_manage_subscriptions_in_navbar_settings.py new file mode 100644 index 0000000000..0c54eddc93 --- /dev/null +++ b/frappe/patches/v14_0/add_manage_subscriptions_in_navbar_settings.py @@ -0,0 +1,25 @@ +import frappe + + +def execute(): + navbar_settings = frappe.get_single("Navbar Settings") + + if frappe.db.exists("Navbar Item", {"item_label": "Manage Subscriptions"}): + return + + for idx, row in enumerate(navbar_settings.settings_dropdown[2:], start=4): + row.idx = idx + + navbar_settings.append( + "settings_dropdown", + { + "item_label": "Manage Subscriptions", + "item_type": "Action", + "action": "frappe.ui.toolbar.redirectToUrl()", + "is_standard": 1, + "hidden": 1, + "idx": 3, + }, + ) + + navbar_settings.save() diff --git a/frappe/patches/v14_0/update_github_endpoints.py b/frappe/patches/v14_0/update_github_endpoints.py index 5ea638f0a6..f7bded4e96 100644 --- a/frappe/patches/v14_0/update_github_endpoints.py +++ b/frappe/patches/v14_0/update_github_endpoints.py @@ -1,6 +1,7 @@ -import frappe import json +import frappe + def execute(): if frappe.db.exists("Social Login Key", "github"): diff --git a/frappe/public/js/desk.bundle.js b/frappe/public/js/desk.bundle.js index 6697c034bc..3383c6aaeb 100644 --- a/frappe/public/js/desk.bundle.js +++ b/frappe/public/js/desk.bundle.js @@ -83,6 +83,7 @@ import "./frappe/ui/toolbar/search_utils.js"; import "./frappe/ui/toolbar/about.js"; import "./frappe/ui/toolbar/navbar.html"; import "./frappe/ui/toolbar/toolbar.js"; +import "./frappe/ui/toolbar/subscription.js"; // import "./frappe/ui/toolbar/notifications.js"; import "./frappe/views/communication.js"; import "./frappe/views/translation_manager.js"; diff --git a/frappe/public/js/frappe/form/controls/geolocation.js b/frappe/public/js/frappe/form/controls/geolocation.js index c78ce52ab6..d99c1bddf5 100644 --- a/frappe/public/js/frappe/form/controls/geolocation.js +++ b/frappe/public/js/frappe/form/controls/geolocation.js @@ -38,6 +38,7 @@ frappe.ui.form.ControlGeolocation = class ControlGeolocation extends frappe.ui.f this.bind_leaflet_draw_control(); this.bind_leaflet_locate_control(); this.bind_leaflet_refresh_button(); + this.map.setView(frappe.utils.map_defaults.center, frappe.utils.map_defaults.zoom); } format_for_input(value) { diff --git a/frappe/public/js/frappe/ui/toolbar/subscription.js b/frappe/public/js/frappe/ui/toolbar/subscription.js new file mode 100644 index 0000000000..cde855f989 --- /dev/null +++ b/frappe/public/js/frappe/ui/toolbar/subscription.js @@ -0,0 +1,80 @@ +$(document).on("startup", async () => { + if (!frappe.boot.setup_complete || !frappe.user.has_role("System Manager")) { + return; + } + + const expiry = frappe.boot.subscription_expiry; + + if (expiry) { + let diff_days = + frappe.datetime.get_day_diff(cstr(expiry), frappe.datetime.get_today()) - 1; + + let subscription_string = __( + `Your subscription will end in ${cstr(diff_days).bold()} ${ + diff_days > 1 ? "days" : "day" + }. After that your site will be suspended.` + ); + + let $bar = $(` +
+
+

${subscription_string}

+
+ + +
+
+
+ `); + + $("footer").append($bar); + + $bar.find(".dismiss-upgrade").on("click", () => { + $bar.remove(); + }); + + $bar.find(".button-renew").on("click", () => { + redirectToUrl(); + }); + } +}); + +function redirectToUrl() { + frappe.call({ + method: "frappe.utils.subscription.remote_login", + callback: (url) => { + if (url.message !== false) { + window.open(url.message, "_blank"); + } else { + frappe.msgprint({ + title: __("Message"), + indicator: "orange", + message: __("No active subscriptions found."), + }); + } + }, + }); +} + +$.extend(frappe.ui.toolbar, { + redirectToUrl() { + redirectToUrl(); + }, +}); diff --git a/frappe/public/js/frappe/widgets/chart_widget.js b/frappe/public/js/frappe/widgets/chart_widget.js index 6e6d2e6f75..18f7459a6c 100644 --- a/frappe/public/js/frappe/widgets/chart_widget.js +++ b/frappe/public/js/frappe/widgets/chart_widget.js @@ -571,12 +571,13 @@ export default class ChartWidget extends Widget { Heatmap: "heatmap", }; + let max_slices = ["Pie", "Donut"].includes(this.chart_doc.type) ? 6 : 9; let chart_args = { data: this.data, type: chart_type_map[this.chart_doc.type], colors: colors, height: this.height, - maxSlices: ["Pie", "Donut"].includes(this.chart_doc.type) ? 6 : 9, + maxSlices: this.chart_doc.number_of_groups || max_slices, axisOptions: { xIsSeries: this.chart_doc.timeseries, shortenYAxisNumbers: 1, diff --git a/frappe/templates/includes/list/list.html b/frappe/templates/includes/list/list.html index 14769ccf93..9575344a70 100644 --- a/frappe/templates/includes/list/list.html +++ b/frappe/templates/includes/list/list.html @@ -19,7 +19,7 @@ {{ item }} {% endfor %} - diff --git a/frappe/tests/test_document.py b/frappe/tests/test_document.py index 6b996aeb94..6080df48d3 100644 --- a/frappe/tests/test_document.py +++ b/frappe/tests/test_document.py @@ -375,6 +375,12 @@ class TestDocument(FrappeTestCase): doc.set("user_emails", None) self.assertEqual(doc.user_emails, []) + # setting a string value should fail + self.assertRaises(TypeError, doc.set, "user_emails", "fail") + # but not when loading from db + doc.flags.ignore_children = True + doc.update({"user_emails": "ok"}) + def test_doc_events(self): """validate that all present doc events are correct methods""" diff --git a/frappe/translations/da_dk.csv b/frappe/translations/da_dk.csv deleted file mode 100644 index 1d9f635697..0000000000 --- a/frappe/translations/da_dk.csv +++ /dev/null @@ -1,8 +0,0 @@ -Half Day,Half Day, -Half Yearly,Halvdelen Årlig, -"""Company History""",'Virksomhedshistorie', -1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent,1 Valuta = [?] Fraktion For eksempel 1 USD = 100 Cent, -"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Ukendt fil kodning. Prøvede utf-8, vinduer-1250, vinduer-1252.", -zoom-in,zoom-in, -zoom-out,zoom-out, -{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en blad node, da den har undernoder", diff --git a/frappe/translations/en_gb.csv b/frappe/translations/en_gb.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/en_us.csv b/frappe/translations/en_us.csv deleted file mode 100644 index 4d40d80ba0..0000000000 --- a/frappe/translations/en_us.csv +++ /dev/null @@ -1,18 +0,0 @@ -0 - Draft; 1 - Submitted; 2 - Cancelled,0 - Draft; 1 - Submitted; 2 - Canceled, -Allow Print for Cancelled,Allow Print for Canceled, -Cancelled Document restored as Draft,Canceled Document restored as Draft, -Cancelling,Canceling, -Cancelling {0},Canceling {0}, -Cannot change state of Cancelled Document. Transition row {0},Cannot change state of Canceled Document. Transition row {0}, -Cannot edit cancelled document,Cannot edit canceled document, -Cannot link cancelled document: {0},Cannot link canceled document: {0}, -Not allowed to print cancelled documents,Not allowed to print canceled documents, -Payment Cancelled,Payment Canceled, -"States for workflow (e.g. Draft, Approved, Cancelled).","States for workflow (e.g. Draft, Approved, Canceled).", -You selected Draft or Cancelled documents,You selected Draft or Canceled documents, -Your payment is cancelled.,Your payment is canceled., -cancelled this document,canceled this document, -facetime-video,Facetime-Video, -zoom-out,zoom-out, -Cancelled,Canceled, -CANCELLED,Canceled, diff --git a/frappe/translations/es_ar.csv b/frappe/translations/es_ar.csv deleted file mode 100644 index 8af16168a7..0000000000 --- a/frappe/translations/es_ar.csv +++ /dev/null @@ -1,2 +0,0 @@ -Comment Type,Tipo de Comentario, -Communication,Comunicacion, diff --git a/frappe/translations/es_bo.csv b/frappe/translations/es_bo.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/es_cl.csv b/frappe/translations/es_cl.csv deleted file mode 100644 index 469d0886a3..0000000000 --- a/frappe/translations/es_cl.csv +++ /dev/null @@ -1,8 +0,0 @@ -Cannot use sub-query in order by,No se puede utilizar una sub-consulta en order by, -Column Name cannot be empty,El Nombre de la Columna no puede estar vacía, -Gateway,Puerta de Entrada, -LDAP First Name Field,Campo de Primer Nombre LDAP, -Link DocType,Enlace DocType, -Link Title,Título del Enlace, -changed values for {0},Valores modificados para {0}, -facetime-video,Vídeo FaceTime, diff --git a/frappe/translations/es_co.csv b/frappe/translations/es_co.csv deleted file mode 100644 index d2a037aeaf..0000000000 --- a/frappe/translations/es_co.csv +++ /dev/null @@ -1,6 +0,0 @@ -Refreshing...,Actualizando..., -Clear Filters,Limpiar Filtros, -No Events Today,Sin eventos hoy, -Today's Events,Eventos para hoy, -Disabled,Inhabilitado, -Your Shortcuts,Tus accesos, diff --git a/frappe/translations/es_do.csv b/frappe/translations/es_do.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/es_ec.csv b/frappe/translations/es_ec.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/es_es.csv b/frappe/translations/es_es.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/es_gt.csv b/frappe/translations/es_gt.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/es_mx.csv b/frappe/translations/es_mx.csv deleted file mode 100644 index d573300749..0000000000 --- a/frappe/translations/es_mx.csv +++ /dev/null @@ -1,8 +0,0 @@ -<head> HTML,<head> HTML, -"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","Si está activado Aplicar Permiso de Usuario Estricto y se ha definido el Permiso de Usuario para un DocType para un Usuario, todos los documentos en los que el valor del enlace esté en blanco no se mostrarán a ese Usuario", -Please select Minimum Password Score,Por favor selecciona la Puntuación Mínima de la Contraseña, -Postprocess Method,Método de Postproceso, -Smallest Currency Fraction Value,Valor de la fracción de moneda más pequeña, -Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Fracción más pequeña de circulación (moneda). Por ejemplo, 1 centavo por USD y debe ser ingresado como 0.01", -Administration,ADMINISTRACIÓN, -Places,LUGARES, diff --git a/frappe/translations/es_ni.csv b/frappe/translations/es_ni.csv deleted file mode 100644 index 3c5ad76f90..0000000000 --- a/frappe/translations/es_ni.csv +++ /dev/null @@ -1,5 +0,0 @@ -Accept Payment,Aceptar Pago, -Backups,Respaldos, -Based on Permissions For User,Base sobre Permiso de Usuario, -Better add a few more letters or another word,Mejor añadir algunas letras extras u otra palabra, -"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultarán truncadas, como caracteres máximo permitido es {2}", diff --git a/frappe/translations/es_pe.csv b/frappe/translations/es_pe.csv deleted file mode 100644 index d528886454..0000000000 --- a/frappe/translations/es_pe.csv +++ /dev/null @@ -1,426 +0,0 @@ -Add,Añadir, -Address,Direcciones, -Address Title,Dirección Título, -Applicable For,Aplicable para, -City/Town,Ciudad/Provincia, -Contact Details,Datos del Contacto, -Document Name,Nombre del documento, -Feedback,Comentarios, -Field Name,Nombre del campo, -Fields,Los campos, -Letter Head,Membretes, -Maintenance User,Mantenimiento por el Usuario, -Message Examples,Ejemplos de Mensajes, -Middle Name (Optional),Segundo Nombre ( Opcional), -Next,Próximo, -No address added yet.,No se ha añadido ninguna dirección todavía., -No contacts added yet.,No se han añadido contactos todavía, -Replied,Respondio, -Report,Informe, -Report Builder,Generador de informes, -Report Type,Tipo de informe, -Role,Función, -Sales Master Manager,Gerente de Ventas, -Salutation,Saludo, -Sample,Muestra, -Scheduled,Programado, -Search,Búsqueda, -Select DocType,Seleccione tipo de documento, -Series {0} already used in {1},Serie {0} ya se utiliza en {1}, -Service,Servicio, -Shipping,Envío, -Stopped,Detenido, -Subject,Sujeto, -Thank you,Gracias, -Website Manager,Administrador de Página Web, -Workflow,Flujo de Trabajo, -"""Parent"" signifies the parent table in which this row must be added",'Padre' es la tabla principal en la que hay que añadir esta fila, -'In List View' not allowed for type {0} in row {1},No está permitido para el tipo {0} en la linea {1}, -** Failed: {0} to {1}: {2},** Fallo: {0} a {1}: {2}, -**Currency** Master,**Moneda** Principal, -1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent,"1 Moneda = [?] Fracción, ejem: 1 USD = 100 Centavos", -1 hour ago,Hace 1 hora, -1 minute ago,Hace 1 minuto, -A new account has been created for you at {0},Una nueva cuenta ha sido creada para ti en {0}, -About Us Settings,Configuración de Acerca de Nosotros, -"Actions for workflow (e.g. Approve, Cancel).","Acciones para los flujos de trabajo (por ejemplo: Aprobar, Cancelar).", -Activity log of all users.,Registro de Actividad para todos los Usuarios, -Add a New Role,Añadir un Nuevo Rol, -Add custom javascript to forms.,Añadir javascript personalizado las formas ., -Adds a custom field to a DocType,Añade un campo personalizado para un tipo de documento, -Allow on Submit,Permitir en Enviar, -"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!", -"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Anexar como la comunicación en contra de este tipo de documento (debe tener campos, ""Estado"", ""Asunto"")", -"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Como práctica recomendada , no asigne el mismo conjunto de permisos para diferentes funciones. En su lugar, establecer varias funciones al mismo usuario .", -Attached To DocType,Asociado A DocType, -Banner Image,Imagen del banner, -Banner is above the Top Menu Bar.,El Banner está por sobre la barra de menú superior., -Both DocType and Name required,Tanto DocType y Nombre son obligatorios, -Both login and password required,Se requiere tanto usuario como contraseña, -Cannot delete {0} as it has child nodes,"No se puede eliminar {0} , ya que tiene nodos secundarios", -Cannot edit cancelled document,No se puede editar un documento anulado, -Cannot edit standard fields,No se puede editar campos estándar, -"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.","Algunos documentos como facturas, no se deben cambiar una vez guardados. El estado final de dichos documentos se llama 'Presentado'. Puede restringir qué roles/usuarios pueden presentar documentos", -Change Password,Cambiar contraseña., -"Change field properties (hide, readonly, permission etc.)","Cambiar las propiedades de campo (ocultar, sólo lectura, permisos, etc)", -Check which Documents are readable by a User,Marque que documentos pueden ser leídos por el usuario, -Clear all roles,Desactive todos los roles, -Column Name,Nombre de la columna, -Contact Us Settings,Configuración de Contáctenos, -"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto , como "" Consultas de Ventas , Soporte de consultas"" , etc cada uno en una nueva línea o separados por comas.", -Content Hash,Hash contenido, -Create a New Format,Crear un nuevo formato, -"Customize Label, Print Hide, Default etc.","Personaliza etiquetas, impresión Hide , Default , etc", -Data missing in table,Los datos que faltan en la tabla, -Days Before or After,Días Anteriores o Posteriores, -Default Address Template cannot be deleted,Plantilla de la Direcciones Predeterminadas no puede eliminarse, -Default Inbox,Bandeja de entrada por defecto, -Define workflows for forms.,Definir los flujos de trabajo para las formas ., -Defines actions on states and the next step and allowed roles.,Define las acciones de los estados y el siguiente paso y funciones permitidas., -"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Este documento puede estar en Diferentes ""Estados"". Como ""Abierto"", ""Pendiente de Aprobación"", etc.", -Disable Customer Signup link in Login page,Desactivar enlace de registro del cliente en la página de entrada, -Disable Report,Desactivar Informe, -Disable Standard Email Footer,Desactivar pie de página estandar en Email, -Doc Status,Estado Doc., -DocType can not be merged,El DocType no se puede fusionar, -DocType is a Table / Form in the application.,El DocType es una tabla / formulario en la aplicación., -DocType on which this Workflow is applicable.,El DocType en el presente del flujo de trabajo es aplicable., -Document Types,Tipos de Documento, -Download with Data,Descarga de datos, -Drag elements from the sidebar to add. Drag them back to trash.,Arrastre los elementos de la barra lateral para agregar. Arrastre de nuevo a la papelera de reciclaje., -Dropbox Access Key,Clave de Acceso de Dropbox, -Dropbox Access Secret,Acceso Secreto de Dropbox, -Edit Custom HTML,Edición de HTML personalizado, -Edit HTML,Edición de HTML, -Edit Heading,Editar Rubro, -Email Account Name,Correo electrónico Nombre de cuenta, -Email Settings,Configuración del correo electrónico, -Email Signature,Firma Email, -Embed image slideshows in website pages.,Presentacion de imágenes incrustadas en páginas web ., -Enable Incoming,Habilitar entrante, -Enable Outgoing,Habilitar saliente, -Enter Form Type,Introduzca Tipo de Formulario, -"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduzca los parámetros de URL estáticas aquí (Ej. sender = ERPNext , nombre de usuario = ERPNext , contraseña = 1234 etc )", -Enter url parameter for receiver nos,Introduzca el parámetro url para el receptor no, -Field Description,Descripción del Campo, -Fieldname which will be the DocType for this link field.,Nombre de campo el cual será el DocType para enlazar el campo., -File Size,Tamaño del archivo, -Float,flotador, -Footer Items,Elementos del Pie de Página, -"For Links, enter the DocType as range.\nFor Select, enter list of Options, each on a new line.","Para enlaces, introduzca el DocType como rango. para seleccionar, ingrese lista de opciones, cada uno en una nueva línea.", -"For updating, you can update only selective columns.","Para la actualización, usted lo puede hacer solo en algunas columnas.", -Heading,Título, -Help on Search,Ayuda en la búsqueda, -Hide Copy,Copia Oculta, -"How should this currency be formatted? If not set, will use system defaults","¿Cómo se debe formatear esta moneda ? Si no se establece, utilizará valores predeterminados del sistema", -Icon will appear on the button,Icono aparecerá en el botón, -"If a Role does not have access at Level 0, then higher levels are meaningless.","Si una función no tiene acceso en el Nivel 0, entonces los niveles más altos no tienen sentido .", -"If checked, all other workflows become inactive.","Si se selecciona, todos los otros flujos de trabajo se vuelven inactivos .", -"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si va a cargar nuevos registros, ""Secuencias"" se convierte en obligatoria, si está presente.", -"If you are uploading new records, leave the ""name"" (ID) column blank.","Si va a cargar nuevos registros, deje en blanco la columna ""nombre"" (ID)", -"If you set this, this Item will come in a drop-down under the selected parent.","Si usted habilita esto, el elemento creará un menú desplegable--", -Ignore attachments over this size,Ignorar los adjuntos mayores a este tamaño, -Import,Importación, -In points. Default is 9.,En puntos. El valor predeterminado es 9., -Insert Style,Inserte Estilo, -Introduce your company to the website visitor.,Dar a conocer su empresa al visitante del sitio Web ., -Invalid naming series (. missing),Serie de nombres Inválidos (. Faltante), -Is Primary Contact,Es Contacto principal, -Is Single,Es Individual, -Is Submittable,Es presentable--, -JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Formato de JavaScript: frappe.query_reports [' REPORTNAME'] = { }, -Label Help,Etiqueta Ayuda, -Label is mandatory,Etiqueta es obligatoria, -Link to the page you want to open. Leave blank if you want to make it a group parent.,Enlace a la página que desea abrir. Dejar en blanco si desea que sea un grupo padre., -List,Vista de árbol, -Mandatory fields required in {0},Campos obligatorios requeridos en {0}, -Markdown,Markdown, -Max width for type Currency is 100px in row {0},El ancho máximo para la moneda es 100px en la linea {0}, -Maximum {0} rows allowed,Máximo {0} filas permitidos, -"Meaning of Submit, Cancel, Amend","Significado de Enviar, Cancelar, Corregir", -Multiple root nodes not allowed.,Nodos raíz múltiples no permitidos., -Must have report permission to access this report.,Debe tener permiso de informe para acceder a este informe., -Must specify a Query to run,Debe especificar una consulta para ejecutar, -Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nombre del tipo de documento (DocType) el cual quiere que este campo este vinculado. por ejemplo al Cliente, -Naming Series mandatory,Las secuencias son obligatorias, -Nested set error. Please contact the Administrator.,"Error de conjunto anidado . Por favor, póngase en contacto con el Administrador.", -New {0},Nuevo {0}, -Newsletter has already been sent,El boletín de noticias ya ha sido enviado, -"Newsletters to contacts, leads.","Boletines para contactos, clientes potenciales .", -No Copy,Sin copia, -No further records,No hay registros adicionales, -No {0} found,{0} no encontrado, -Not allowed to Import,No tiene permisos para importar, -"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo tendrán acceso a los documentos que puedan (por ejemplo, Entrada de blog ) donde se encuentra la relación (por ejemplo, Blogger ) .", -Only Administrator can save a standard report. Please rename and save.,"Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guardar.", -Only Allow Edit For,Sólo Permitir Editar Para, -Oops! Something went wrong,Oups! Algo salió mal, -Open a module or tool,Abra un Módulo o Herramienta, -Optional: The alert will be sent if this expression is true,Opcional: La alerta será enviado si esta expresión es verdadera, -Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades ""Tipo de Documento""", -Options not set for link field {0},Las opciones no establecen para campo de enlace {0}, -PDF Settings,Configuración de PDF, -Parent,Padre, -Parent Table,Tabla de Padres, -Patch Log,Registro de Parches, -Perm Level,Nivel Perm, -Permanently Submit {0}?,Presentar permanentemente {0}?, -Permanently delete {0}?,Eliminar permanentemente {0} ?, -"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.","Los permisos se establecen en las Funciones y Tipos de Documentos (llamados DocTypes ) mediante el establecimiento de permisos como Leer, Escribir , Crear, Eliminar , Enviar, Cancelar, Corregir, Informe , Importación, Exportación, Impresión , Correo Electrónico y Establecer Permisos de Usuario .", -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.,Permisos en los niveles más altos son los permisos de nivel de campo. Todos los campos tienen un conjunto Nivel de permiso en su contra y las reglas definidas en el que los permisos se aplican al campo. Esto es útil en caso de que quiera ocultar o hacer cierto campo de sólo lectura para ciertas funciones., -"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Los permisos del nivel 0 son los permisos a nivel de documentos, es decir, que tienen permiso especial para los documentos.", -Permissions get applied on Users based on what Roles they are assigned.,Permisos han sido aplicados a los Usuarios en base a los funciones que tienen asignadas., -Pick Columns,Seleccione columnas, -Please attach a file first.,Adjunte un archivo primero ., -Please do not change the template headings.,"Por favor, no cambiar los encabezados de la plantilla.", -Please save before attaching.,"Por favor, guarde los cambios antes de conectar", -Please select DocType first,"Por favor, seleccione DocType primero", -Posts,Mensajes, -Posts by {0},Publicaciones por {0}, -Print Style Preview,Vista previa de Estilo de impresión, -Property Setter,Establecer prioridad--, -Property Setter overrides a standard DocType or Field property,Propiedad Setter se impone a una DocType estándar o propiedad Campo, -Query must be a SELECT,Debe seleccionar la Consulta, -Read,Lectura, -Record does not exist,Registro no existe, -Redis cache server not running. Please contact Administrator / Tech support,"Servidor de Caché Redis no esta funcionando. Por favor, póngase en contacto con el Administrador / Soporte técnico", -Ref DocType,Referencia Tipo de Documento, -Remove,Quitar, -Remove Section,Retire la Sección, -Remove all customizations?,Eliminar todas las personalizaciones ?, -Repeat On,Repetir OK, -Repeat Till,Repita Hasta, -Repeat this Event,Repita este Evento, -Report Hide,Ocultar Informe, -Report Manager,Administrador de informes, -Report Name,Nombre del informe, -Report cannot be set for Single types,Reportar no se puede configurar para los tipos individuales, -Report was not saved (there were errors),Informe no se guardó ( hubo errores ), -Report {0} is disabled,Informe {0} está deshabilitado, -Represents the states allowed in one document and role assigned to change the state.,Representa los estados permitidos en un solo documento y función asignada a cambiar el estado., -Reset Permissions for {0}?,Restablecer los permisos para {0} ?, -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),Restringir el usuario a esta dirección IP. Todas las direcciones IP se pueden agregar separandolas con comas. También se aceptan direcciones IP parciales como ( 111.111.111 ), -Role Name,Nombre de la Función, -Role Permissions,Permisos de la Función, -Role and Level,Función y Nivel, -Roles,Funciones, -Roles Assigned,Funciones Asignadas, -Roles can be set for users from their User page.,Las funciones se pueden configurar para los usuarios de su página de usuario ., -Root {0} cannot be deleted,Raíz {0} no se puede eliminar, -Row #{0}:,Fila # {0}:, -Row {0}: Not allowed to enable Allow on Submit for standard fields,Fila {0}: No se permite habilitar Permitir en Enviar para campos estándar, -Rules defining transition of state in the workflow.,Reglas que definen la transición de estado del flujo de trabajo ., -"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Reglas para transición entre estados, como el siguiente estado y qué función permite cambiar de estado , etc", -Script,Guión, -Script Report,Informe de secuencias de comandos, -Script to attach to all web pages.,Guión para unir a todas las páginas web., -Search in a document type,Buscar en un tipo de documento, -Search or type a command,Busque o escriba un comando, -Section Break,Salto de sección, -Security,Seguridad, -Select Columns,Seleccionar columnas, -Select Document Type,Seleccionar el tipo de documento, -Select Document Type or Role to start.,Seleccione el Tipo de Documento o Función para empezar., -Select Document Types to set which User Permissions are used to limit access.,Seleccione los Tipos de Documento para establecer los Permisos de Usuario para limitar el acceso., -Select Print Format,Seleccionar el formato de impresión, -Select Print Format to Edit,Seleccione Formato de impresión a Editar, -Select Role,Seleccione Función, -Select Table Columns for {0},Seleccionar columnas de tabla para {0}, -Select a DocType to make a new format,Seleccione un tipo de documento para hacer un nuevo formato, -Select a group node first.,Seleccione un nodo de grupo primero., -Select an image of approx width 150px with a transparent background for best results.,Seleccione una imagen de ancho aprox 150px con fondo transparente para obtener mejores resultados ., -Select the label after which you want to insert new field.,Seleccione la etiqueta después de la cual desea insertar el nuevo campo ., -Select {0},Seleccione {0}, -Send Email Print Attachments as PDF (Recommended),Enviar Emails con adjuntos en formato PDF (recomendado), -Send Print as PDF,Enviar Impresión como PDF, -Send Welcome Email,Enviar Bienvenido Email, -Send alert if date matches this field's value,Envíe la alarma si la fecha coincide con el valor de este campo, -Send alert if this field's value changes,Enviar alerta si cambia el valor de este campo, -Send an email reminder in the morning,Enviar un recordatorio por correo electrónico en la mañana, -Send enquiries to this email address,Puede enviar sus preguntas a la siguiente dirección de correo electrónico, -Sent or Received,Envío y de recepción, -Session Expiry Mobile,Vencimiento de sesión en dispositivo mobil, -Session Expiry must be in format {0},Vencimiento de sesión debe estar en formato {0}, -Set Banner from Image,Establecer Banner de imagen, -Set Only Once,Un único ajuste, -Set Permissions on Document Types and Roles,Establecer Permisos en los Tipos de Documentos y Funciones, -Set Value,Valor seleccionado, -"Set default format, page size, print style etc.","Establecer formato por defecto, tamaño de página, el estilo de impresión, etc", -Set non-standard precision for a Float or Currency field,Ajuste de precisión no estándar para Decimales Campo de Moneda, -Set numbering series for transactions.,Establecer series de numeración para las transacciones., -Setting this Address Template as default as there is no other default,Al establecer esta plantilla de dirección por defecto ya que no hay otra manera predeterminada, -Settings for About Us Page.,Ajustes para Nosotros Pagina ., -Settings for Contact Us Page,Ajustes para Contáctenos Página, -Settings for Contact Us Page.,Ajustes para la página de contacto., -Settings for the About Us Page,Ajustes de la página Quiénes somos, -Setup Complete,Configuración completa, -"Setup of top navigation bar, footer and logo.","Configuración de la barra de navegación superior , pie de página y el logotipo.", -Share With,Comparte con, -Shared with everyone,Compartido con todo el mundo, -Shop,Tienda, -Show more details,Mostrar más detalles, -"Show title in browser window as ""Prefix - title""",Mostrar título en la ventana del navegador como "Prefijo - título", -Sidebar Items,Sidebar Artículos, -Single Post (article).,Mensaje Individual ( artículo)., -Single Types have only one record no tables associated. Values are stored in tabSingles,Tipos simples tienen sólo un registro no hay tablas asociadas . Los valores se almacenan en tabSingles, -Slideshow Items,Presentación Artículos, -Slideshow Name,Presentación Nombre, -Slideshow like display for the website,Presentación como pantalla para el sitio web, -Sorry! I could not find what you were looking for.,¡Lo siento! No pude encontrar lo que estabas buscando., -Sorry! Sharing with Website User is prohibited.,¡Lo siento! Compartir con los del Sitio Web está prohibido., -Sorry! User should have complete access to their own record.,¡Lo siento! El usuario debe tener acceso completo a su propio récord., -Sorry! You are not permitted to view this page.,¡Lo siento! Usted no está autorizado a ver esta página., -Sort Field,Ordenar campo, -Sort Order,Orden de Clasificación, -Standard Print Format cannot be updated,Formato de impresión estándar no se puede actualizar, -Start entering data below this line,Empiece a introducir datos por debajo de esta línea, -Start new Format,Comenzar una nueva Formato, -States,Unidos, -Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Almacena el JSON de las últimas versiones conocidas de diferentes aplicaciones instaladas. Se utiliza para mostrar notas de la versión., -Style,Estilo, -"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estilo representa el color del botón : Éxito - Verde , Peligro - Rojo , Inverso - Negro , Primaria - Azul Oscuro , Info - Azul Claro, Advertencia - Orange", -"Sub-currency. For e.g. ""Cent""","Sub-moneda, por ejemplo, ""Centavo""", -Submit an Issue,Presentar un problema, -Submitting,Presentar, -Subsidiary,Filial, -Success Message,Mensaje de éxito, -Success URL,URL de Éxito, -Symbol,Símbolo, -Table {0} cannot be empty,La tabla {0} no puede estar vacío, -Team Members Heading,Miembros del Equipo Lider, -Text Align,Alineación del texto, -Text Color,Color del texto, -Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,El texto que se muestra para enlazar a la página Web si esta forma dispone de una página web. Ruta Enlace automáticamente se genera en base a `page_name` y` parent_website_route`, -Thank you for your email,Gracias por tu email, -The system provides many pre-defined roles. You can add new roles to set finer permissions.,El sistema ofrece muchas funciones predefinidas . Usted puede agregar nuevos roles para establecer permisos más finos., -There can be only one Fold in a form,Sólo puede haber un doblez en forma, -There were errors while sending email. Please try again.,"Hubo errores al enviar el correo electrónico. Por favor, inténtelo de nuevo.", -"There were some errors setting the name, please contact the administrator","Había algunos errores de configuración el nombre, por favor póngase en contacto con el administrador", -Third Party Authentication,Autenticación de socios, -This Currency is disabled. Enable to use in transactions,Esta moneda está deshabilitada . Habilite el uso en las transacciones, -This form does not have any input,Esta forma no tiene ninguna entrada, -This format is used if country specific format is not found,Este formato se utiliza si no se encuentra un formato específico del país, -This goes above the slideshow.,Esto va por encima de la presentación de diapositivas., -This is an automatically generated reply,Esta es una respuesta generada automáticamente, -This link is invalid or expired. Please make sure you have pasted correctly.,"Este enlace no es válido o caducado. Por favor, asegúrese de que ha pegado correctamente.", -This role update User Permissions for a user,Este función actualiza los Permisos de Usuario para un usuario, -Time Zones,Husos horarios, -Title Prefix,Prefijo del Título, -Title field must be a valid fieldname,Campo Título debe ser un nombre de campo válido, -Total Subscribers,Los suscriptores totales, -Unable to load: {0},No se puede cargar : {0}, -Unread Notification Sent,Notificación No leído Enviado, -Update Field,Actualizar Campos, -Use TLS,Utilice TLS, -User Defaults,Predeterminadas del Usuario, -User Roles,Funciones de Usuario, -User Tags,Nube de Etiquetas, -User editable form on Website.,Forma editable Usuario en el Sitio Web., -User not allowed to delete {0}: {1},El usuario no puede eliminar {0}: {1}, -Users with role {0}:,Los usuarios con función {0}:, -Valid email and name required,Nombre y Correo Electrónico válido requerido, -Website Script,Guión del Sitio Web, -Website Theme Image,Sitio web Imagen por tema, -Website Theme Image Link,Sitio web Imagen por tema Enlace, -"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Cuando se modifique un documento después de Cancelar y guardarlo , se obtendrá un nuevo número que es una versión del antiguo número.", -Workflow Action,Acciones de los flujos de trabajo, -Workflow State,Estados de los flujos de trabajo, -You are not allowed to delete a standard Website Theme,No se le permite eliminar un tema Sitio web estándar, -You can add dynamic properties from the document by using Jinja templating.,Puede añadir propiedades dinámicas del documento mediante el uso de plantillas Jinja., -"You can change Submitted documents by cancelling them and then, amending them.","Puede cambiar los documentos Enviados cancelándolos y luego, haciendo los cambios pertinentes.", -You can use Customize Form to set levels on fields.,Usted puede utilizar Personalizar formulario para establecer los niveles de los campos ., -You can use wildcard %,Puede utilizar caracteres comodín%, -You need to be in developer mode to edit a Standard Web Form,Se requiere estar en modo desarrollador para editar un formulario web estándar., -You need to be logged in and have System Manager Role to be able to access backups.,"Necesitas estar conectado y tener la función de Administrador del Sistema, para poder tener acceso a las copias de seguridad .", -You need to be logged in to access this {0}.,Tienes que estar registrado para acceder a este {0}., -"You need to have ""Share"" permission","Usted necesita tener el permiso ""Compartir""", -Your login id is,Su nombre de usuario es, -Your organization name and address for the email footer.,Su nombre de la organización y dirección para el pie de página de correo electrónico., -"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Su petición ha sido recibida. Le contestaremos en breve. Si usted tiene alguna información adicional, por favor responda a este correo.", -align-justify,alinear - justificar, -align-left,alinear -izquierda, -align-right,alinear a la derecha, -cog,diente, -dd-mm-yyyy,dd- mm- aaaa, -"document type..., e.g. customer","Tipo de documento ..., por ejemplo, al cliente", -download-alt,descargar -alt, -"e.g. ""Support"", ""Sales"", ""Jerry Yang""","por ejemplo ""Soporte "","" Ventas "","" Jerry Yang """, -exclamation-sign,signo de exclamación, -eye-close,ojo -cierre, -eye-open,- ojo abierto, -italic,itálico, -minus-sign,signo menos, -only.,exactos., -question-sign,Consultar Firma, -remove-circle,Eliminar el efecto de círculo, -remove-sign,Eliminar el efecto de signo, -resize-full,cambiar a tamaño completo, -resize-horizontal,cambiar el tamaño horizontal, -resize-small,cambiar el tamaño pequeño, -resize-vertical,cambiar el tamaño vertical, -share-alt,share- alt, -shopping-cart,carro de la compra, -star,estrella, -star-empty,- estrella vacía, -step-backward,paso hacia atrás, -step-forward,paso hacia adelante, -text-height,text- altura, -text-width,texto de ancho, -th,ª, -th-large,-ésimo gran, -th-list,th -list, -thumbs-down,pulgar hacia abajo, -thumbs-up,pulgar hacia arriba, -use % as wildcard,Use% como comodín, -{0} List,Listado: {0}, -{0} Tree,{0} Árbol, -{0} added,{0} agregado(s), -{0} cannot be set for Single types,{0} no se puede establecer para los tipos individuales, -{0} does not exist in row {1},{0} no existe en la linea {1}, -{0} in row {1} cannot have both URL and child items,{0} en la linea {1} no puede tener URL y elementos secundarios, -{0} must be set first,debe establecerse primero: {0}, -{0} not allowed to be renamed,{0} no es permitido ser renombrado, -{0} shared this document with everyone,{0} compartió este documento con todos, -{0} {1} cannot be a leaf node as it has children,"{0} {1} no puede ser un nodo de hoja , ya que tiene los niños", -{0}: Cannot set Amend without Cancel,{0}: no se puede 'Corregir' sin antes cancelar, -{0}: Cannot set Assign Amend if not Submittable,{0}: no se puede 'Asignar Correción' si no se puede presentar, -{0}: Cannot set Assign Submit if not Submittable,{0}: no se puede 'Asignar Enviar' si no se puede presentar, -{0}: Cannot set Cancel without Submit,{0}: no se puede 'Cancelar' sin presentarlo, -{0}: Cannot set Import without Create,{0}: no se puede establecer 'De importación' sin crearlo primero, -"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: no se puede Presentar, Cancelar y Corregir sin Guardar", -{0}: Cannot set import as {1} is not importable,{0}: no se puede definir 'De Importación' como {1} porque no es importable, -{0}: No basic permissions set,{0}: No se han asignado permisos básicos, -"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Sólo una regla es permitida con el mismo rol, Nivel y {1}", -{0}: Permission at level 0 must be set before higher levels are set,{0} : Permiso en el nivel 0 se debe establecer antes de fijar niveles más altos, -Script Type,Guión Tipo, -Add Child,Agregar subcuenta, -Company,Compañía(s), -Currency,Divisa, -Default,Defecto, -Enter Value,Introducir valor, -Export,Exportación, -Export not allowed. You need {0} role to export.,Exportaciones no permitido. Es necesario {0} función de exportar ., -Missing Values Required,Valores perdidos requeridos, -Month,Mes., -Open,Abrir, -Sending,Envío, -Set,conjunto, -Setup Wizard,Asistente de configuración, -Submitted,Enviado, -You can also copy-paste this link in your browser,También puede copiar y pegar este enlace en su navegador, -{0} is required,{0} es necesario, -DRAFT,Borrador., -EMail,Correo electrónico, -Left,Izquierda, -Role Permissions Manager,Administrador de Permisos, -Permitted Documents For User,Documentos permitidos para los usuarios, -Reference Docname,Referencia DocNombre, -Reference Doctype,Referencia DocType, -Select Doctype,Seleccione tipo de documento, -clear,claro, -font,Fuente, -list,Vista de árbol, -remove,Quitar, -search,Búsqueda, -stop,Detenerse, -tag,Etiqueta, diff --git a/frappe/translations/fr_ca.csv b/frappe/translations/fr_ca.csv deleted file mode 100644 index 11cf808b77..0000000000 --- a/frappe/translations/fr_ca.csv +++ /dev/null @@ -1 +0,0 @@ -"To add dynamic subject, use jinja tags like\n\n
{{ doc.name }} Delivered
","Pour ajouter l'objet dynamique, utiliser des balises comme Jinja
 {{ doc.name }} Delivered 
", diff --git a/frappe/translations/pt_br.csv b/frappe/translations/pt_br.csv deleted file mode 100644 index d4dfe920ae..0000000000 --- a/frappe/translations/pt_br.csv +++ /dev/null @@ -1,4702 +0,0 @@ -A4,A4, -API Endpoint,API Endpoint, -API Key,Chave da API, -Access Token,Token de Acesso, -Account,Conta, -Accounts Manager,Gerente de Contas, -Accounts User,Usuário de Contas, -Action,Ação, -Actions,Ações, -Active,Ativo, -Add,Adicionar, -Add Comment,Adicionar Comentário, -Add Row,Adicionar linha, -Address,Endereço, -Address Line 2,Complemento, -Address Title,Título do Endereço, -Address Type,Tipo de Endereço, -Administrator,Administrador, -All Day,Dia Inteiro, -Allow Delete,Permitir Excluir, -Amended From,Alterado De, -Amount,Montante, -Applicable For,Aplicável Para, -Approval Status,Estado de Aprovação, -Assign,Atribuir, -Assign To,Atribuir a, -Attachment,Anexo, -Attachments,Anexos, -Author,Autor, -Auto Repeat,Repetição Automática, -Base URL,URL Base, -Based On,Baseado em, -Beginner,Principiante, -Billing,Faturamento, -Cancel,Cancelar, -Category,Categoria, -Category Name,Nome da Categoria, -City,Cidade, -City/Town,Cidade/Município, -Client,Cliente, -Client ID,ID do Cliente, -Client Secret,Segredo do cliente, -Closed,Fechado, -Code,Código, -Collapse All,Recolher todos, -Color,Cor, -Company Name,Nome da Empresa, -Condition,Condição, -Contact,Contato, -Contact Details,Dados de Contato, -Content,Conteúdo, -Content Type,Tipo de Conteúdo, -Create,Criar, -Created By,Criado por, -Current,Atual, -Custom HTML,HTML Personalizado, -Custom?,Personalizado?, -Date Format,Formato de Data, -Datetime,Data e Hora, -Day,Dia, -Default Letter Head,Cabeçalho de Carta Padrão, -Defaults,Padrões, -Delivery Status,Status da Entrega, -Department,Departamento, -Details,Detalhes, -Document Name,Nome do documento, -Document Status,Status do Documento, -Document Type,tipo de documento, -Domain,Domínio, -Domains,Domínios, -Draft,Rascunho, -Edit,Editar, -Email Account,Conta de Email, -Email Address,Endereço de Email, -Email ID,Email ID, -Email Sent,Email enviado, -Email Template,Modelo de email, -Enable,Permitir, -Enabled,Ativado, -End Date,Data Final, -Error Code: {0},Código do Erro: {0}, -Error Log,Log de Erro, -Event,Evento, -Expand All,Expandir todos, -Fail,Falha, -Failed,Falhou, -Fax,Fax, -Feedback,Comentários, -Female,Feminino, -Field Name,Nome do Campo, -Fieldname,Nome do Campo, -Fields,Campos, -First Name,Nome, -Frequency,Frequência, -Friday,Sexta-feira, -From,De, -Full,Cheio, -Full Name,Nome Completo, -Further nodes can be only created under 'Group' type nodes,Outros nós só podem ser criados dentro dos nós do tipo 'Grupo', -Gender,Sexo, -GitHub Sync ID,GitHub Sync ID, -Guest,Convidado, -Half Day,Meio Período, -Half Yearly,Semestrais, -High,Alto, -Hourly,De hora em hora, -Hub Sync ID,Identificação da Sincronização do Hub, -IP Address,Endereço de IP, -Image,Imagem, -Image View,Visualização de Imagem, -Import Data,Importar dados, -Import Log,Log de Importação, -Inactive,Inativo, -Insert,Inserir, -Interests,Juros, -Introduction,Introdução, -Is Active,É Ativo, -Is Completed,Está completo, -Is Default,É Padrão, -Kanban Board,Painel Kanban, -Label,Rótulo, -Language Name,Nome do Idioma, -Last Name,Sobrenome, -Leaderboard,Placar, -Letter Head,Cabeçalho de Carta, -Level,Nível, -Limit,Limite, -Log,Registo, -Logs,Logs, -Low,Baixo, -Maintenance Manager,Gerente de Manutenção, -Maintenance User,Usuário da Manutenção, -Male,Masculino, -Mandatory,Obrigatório, -Mapping,Mapeamento, -Mapping Type,Tipo de mapeamento, -Medium,Médio, -Meeting,Encontro, -Message Examples,Exemplos de Mensagens, -Method,Método, -Middle Name,Nome do Meio, -Middle Name (Optional),Nome do meio (opcional), -Monday,Segunda-feira, -Monthly,Mensal, -More,Mais, -More Information,Mais Informações, -More...,Mais..., -Move,Mover, -My Account,Minha Conta, -New Address,Novo Endereço, -New Contact,Novo Contato, -Next,Próximo, -No Data,Sem Dados, -No address added yet.,Ainda não foi adicionado nenhum endereço., -No contacts added yet.,Ainda não foi adicionado nenhum contato., -No items found.,Nenhum item encontrado., -None,Nenhum, -Not Permitted,Não Permitido, -Not active,Inativo, -Notes,Notas, -Number,Número, -Online,Online, -Operation,Operação, -Options,Opções, -Other,Outro, -Owner,Proprietário, -Page Missing or Moved,Página ausente ou mudou, -Parameter,Parâmetro, -Password,Senha, -Payment Gateway,Gateway de Pagamento, -Payment Gateway Name,Nome do Gateway de Pagamento, -Payments,Pagamentos, -Period,Período, -Pincode,Pincode, -Plan Name,Nome do Plano, -Please enable pop-ups,Por favor habilite os pop-ups, -Please select Company,"Por favor, selecione a Empresa", -Please select {0},"Por favor, selecione {0}", -Please set Email Address,"Por favor, defina o endereço de Email", -Portal,Portal, -Portal Settings,Configurações do Portal, -Preview,Pré-visualização, -Primary,Primário, -Print Format,Formato de Impressão, -Print Settings,Configurações de Impressão, -Print taxes with zero amount,Imprima impostos com montante zero, -Private,Privado, -Property,Propriedade, -Public,Público, -Published,Publicado, -Purchase Manager,Gerente de Compras, -Purchase Master Manager,Gerente de Cadastros de Compras, -Purchase User,Usuário de Compras, -Query Options,Opções de Consulta, -Range,Faixa, -Rating,Rating, -Received,Recebido, -Recipients,Destinatários, -Redirect URL,Redirecionar URL, -Reference,Referência, -Reference Date,Data de Referência, -Reference Document,Documento de referência, -Reference Document Type,Referência Tipo de Documento, -Reference Owner,Proprietário da Referência, -Reference Type,Tipo de Referência, -Refresh Token,Token de Atualização, -Region,Região, -Rejected,Rejeitado, -Reopen,Reabrir, -Replied,Respondido, -Report,Relatório, -Report Builder,Criador de Relatório, -Report Type,Tipo de Relatório, -Reports,Relatórios, -Response,Resposta, -Role,Função, -Route,Rota, -Sales Manager,Gerente de Vendas, -Sales Master Manager,Gerente de Cadastros de Vendas, -Sales User,Usuário de Vendas, -Salutation,Saudação, -Sample,Amostra, -Saturday,Sábado, -Saved,Salvo, -Scan Barcode,Scan Barcode, -Scheduled,Programado, -Search,Pesquisar, -Secret Key,Chave secreta, -Select,Selecionar, -Select DocType,Selecione DocType, -Send Now,Enviar agora, -Sent,Enviado, -Series {0} already used in {1},Série {0} já usado em {1}, -Service,Serviço, -Set as Default,Definir como Padrão, -Settings,Configurações, -Shipping,Expedição, -Short Name,Nome Curto, -Slideshow,Apresentação de Slides, -Some information is missing,Alguma informação está faltando, -Source,Fonte, -Source Name,Nome da Fonte, -Standard,Padrão, -Start Date,Data de Início, -Start Import,Iniciar importação, -State,Estado, -Stopped,Parado, -Subject,Assunto, -Submit,Enviar, -Successful,Bem sucedido, -Summary,Resumo, -Sunday,Domingo, -System Manager,Administrador do Sistema, -Target,Meta, -Task,Tarefa, -Tax Category,Categoria de imposto, -Test,Teste, -Thank you,Obrigado, -The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,A página que você está procurando não existe. Isto pode ser porque ela foi movido ou se houve um erro de digitação no link., -Timespan,Intervalo de tempo, -To,Para, -To Date,Até a Data, -Tools,Ferramentas, -Traceback,Traceback, -URL,URL, -Unsubscribed,Inscrição Cancelada, -Use Sandbox,Use Sandbox, -User,Usuário, -User ID,ID de Usuário, -Users,Usuários, -Validity,Validade, -Warning,Aviso, -Website,Site, -Website Manager,Administrador do Site, -Website Settings,Configurações do Site, -Wednesday,Quarta-feira, -Week,Semana, -Weekdays,Dias da semana, -Weekly,Semanalmente, -Welcome email sent,Email de Boas Vindas enviado, -Workflow,Fluxo de Trabalho, -You need to be logged in to access this page,Você precisa estar logado para acessar esta página, -old_parent,old_parent, -{0} is mandatory,{0} é obrigatório, - to your browser, para o seu navegador, -"Company History","Histórico da Empresa", -"Parent" signifies the parent table in which this row must be added,"Pai" significa a tabela pai no qual deve ser acrescentado nesta linha, -"Team Members" or "Management","Membros da Equipe" ou "Gerenciamento", -<head> HTML,<head> HTML, -'In Global Search' not allowed for type {0} in row {1},'Na Pesquisa Global' não é permitido para o tipo {0} na linha {1}, -'In List View' not allowed for type {0} in row {1},'Visualização em Lista' não pode ser utilizado para o tipo {0} na linha {1}, -'Recipients' not specified,'Destinatários' não especificado, -(Ctrl + G),(Ctrl + G), -** Failed: {0} to {1}: {2},** Falha: {0} para {1}: {2}, -**Currency** Master,**Moeda** Principal, -0 - Draft; 1 - Submitted; 2 - Cancelled,0 - Rascunho; 1 - Enviado; 2 - Cancelado, -0 is highest,0 é maior, -1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent,1 Moeda = [?] Fração\nPor ex: 1 EUR = 100 Cêntimos, -1 comment,1 comentário, -1 hour ago,1 hora atrás, -1 minute ago,1 minuto atrás, -1 month ago,1 mês atrás, -1 year ago,1 ano atrás, -; not allowed in condition,; não permitido na condição, -

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
,"

Modelo Padrão

\n

Utiliza O Modelo Jinja e todos os campos do Endereço (incluindo Campos Personalizados, caso haja) estarão disponíveis

\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 %}Telefone: {{ phone }}<br>{% endif -%}\n{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n
", -A Lead with this Email Address should exist,Um Lead com este email deve existir, -A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Uma lista de recursos que o aplicativo cliente terá acesso a depois que o usuário permita.
por exemplo, do projeto", -A log of request errors,Um log de erros de solicitação, -A new account has been created for you at {0},Uma nova conta foi criada para você em {0}, -A symbol for this currency. For e.g. $,Um símbolo para esta moeda. Por exemplo: R$, -A word by itself is easy to guess.,Uma palavra por si só é fácil de adivinhar., -API Endpoint Args,API Endpoint Args, -API Key cannot be regenerated,A chave da API não pode ser regenerada, -API Password,Senha da API, -API Secret,Segredo da API, -API Username,Usuário da API, -ASC,ASC, -About Us Settings,Configurações do Quem Somos, -About Us Team Member,Sobre Nós - Membros da Equipe, -Accept Payment,Aceitar Pagamento, -Access Key ID,ID da chave de acesso, -Access Token URL,URL do Token de Acesso, -Action Failed,A Ação Falhou, -Action Timeout (Seconds),Tempo Limite de Ação (Segundos), -"Actions for workflow (e.g. Approve, Cancel).","Ações para o fluxo de trabalho (por exemplo, Aprovar , Cancelar) .", -Active Domains,Domínios ativos, -Active Sessions,Sessões ativas, -Activity Log,Log de Atividade, -Activity log of all users.,Registro de atividade de todos os usuários., -Add / Manage Email Domains.,Adicionar / Gerenciar Domínios de E-mail., -Add / Update,Adicionar / Atualizar, -Add A New Rule,Adicionar uma Nova Regra, -Add Another Comment,Adicionar Outro Comentário, -Add Attachment,Anexar, -Add Column,Adicionar Coluna, -Add Contact,Adicionar contato, -Add Contacts,Adicionar contatos, -Add Filter,Adicionar Filtro, -Add Group,Adicionar grupo, -Add New Permission Rule,Adicionar Nova Regra de Permissão, -Add Review,Adicione uma avaliação, -Add Signature,Adicionar Assinatura, -Add Subscribers,Adicionar Inscritos, -Add Total Row,Adicionar Linha de Total, -Add Unsubscribe Link,Adicionar link para cancelar inscrição, -Add User Permissions,Adicionar permissões do usuário, -Add a New Role,Adicionar uma Nova Função, -Add a column,Adicionar uma coluna, -Add a comment,Adicionar um comentário, -Add a new section,Adicione uma nova seção, -Add a tag ...,Adicione uma tag ..., -Add all roles,Adicionar todas funções, -Add custom forms.,Adicionar formulários personalizados., -Add custom javascript to forms.,Adicionar javascript personalizado aos formulários., -Add fields to forms.,Adicionar campos nos formulários., -Add meta tags to your web pages,Adicione meta tags às suas páginas da web, -Add script for Child Table,Adicionar script para tabela filho, -Add to table,Adicionar à mesa, -Add your own translations,Adicione suas próprias traduções, -"Added HTML in the <head> section of the web page, primarily used for website verification and SEO","HTML adicionado na seção <head> da página web, principalmente utilizadas para a verificação do site e SEO", -Added {0},Adicionado {0}, -Adding System Manager to this User as there must be atleast one System Manager,Adicionando este usuário como System Manager pois deve haver pelo menos um System Manager, -Additional Permissions,Permissões Adicionais, -Address Template,Modelo de Endereço, -Address Title is mandatory.,Titulo do Endereço é obrigatório., -Address and other legal information you may want to put in the footer.,Endereço e outras informações legais que você pode querer colocar no rodapé., -Addresses And Contacts,Endereços e Contatos, -Adds a client custom script to a DocType,Adiciona um script personalizado do cliente a um DocType, -Adds a custom field to a DocType,Adiciona um campo personalizado para um Tipo de Documento (DocType), -Admin,Administrador, -Administrator Logged In,Administrador logou-se, -Administrator accessed {0} on {1} via IP Address {2}.,Administrador acessada {0} em {1} através do endereço IP {2}., -Advanced,Avançado, -Advanced Control,Controle Avançado, -Advanced Search,Pesquisa Avançada, -Align Labels to the Right,Alinhar etiquetas à direita, -Align Value,Alinhar Valor, -All Images attached to Website Slideshow should be public,Todas as imagens anexadas à apresentação de slides do site devem ser públicas, -All customizations will be removed. Please confirm.,Todas as personalizações serão removidos. Por favor confirme., -"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Todos os status possíveis de fluxo de trabalho e as funções do fluxo de trabalho. Opções Docstatus: 0 é ""Salvo"", 1 é ""Enviado"" e 2 é ""Cancelado""", -All-uppercase is almost as easy to guess as all-lowercase.,Tudo em maiúsculas é quase tão fácil de adivinhar como tudo em minúsculas., -Allocated To,Atribuído a, -Allow,Permitir, -Allow Bulk Edit,Permitir edição em massa, -Allow Comments,Permitir Comentários, -Allow Consecutive Login Attempts ,Permitir tentativas de login consecutivas, -Allow Dropbox Access,Permitir Acesso Dropbox, -Allow Edit,Permitir Editar, -Allow Guest to View,Permitir visualização de convidado, -Allow Import (via Data Import Tool),Permitir Importação (via Data Import Tool), -Allow Incomplete Forms,Permitir Formulários Incompletos, -Allow Login After Fail,Permitir login após falha, -Allow Login using Mobile Number,Permitir login usando o número de celular, -Allow Login using User Name,Permitir Login usando o nome de usuário, -Allow Modules,Permitir Módulos, -Allow Multiple,Permitir Multiplos, -Allow Print,Permitir Impressão, -Allow Print for Cancelled,Permitir impressão para cancelado, -Allow Print for Draft,Permitir impressão para rascunho, -Allow Read On All Link Options,Permitir leitura em todas as opções de link, -Allow Rename,Permitir Renomear, -Allow Roles,Permitir Funções, -Allow Self Approval,Permitir auto-aprovação, -Allow approval for creator of the document,Permitir aprovação para o criador do documento, -Allow events in timeline,Permitir eventos na linha do tempo, -Allow in Quick Entry,Permitir na entrada rápida, -Allow on Submit,Permitir ao Enviar, -Allow only one session per user,Permitir apenas uma sessão por usuário, -Allow page break inside tables,Permitir quebra de página dentro de tabelas, -Allow saving if mandatory fields are not filled,Permitir salvar se os campos obrigatórios não são preenchidas, -Allow user to login only after this hour (0-24),Permitir que o usuário faça o login somente após este horário (0-24), -Allow user to login only before this hour (0-24),Permitir que o usuário faça o login somente antes deste horário (0-24), -Allowed,Permitido, -Allowed In Mentions,Permitido nas menções, -"Allowing DocType, DocType. Be careful!","Permitindo DocType , DocType . Tenha cuidado !", -Already Registered,Já está registrado, -Also adding the dependent currency field {0},Adicionando também o campo de moeda dependente {0}, -Always add "Draft" Heading for printing draft documents,Sempre adicionar "Rascunho" no cabeçalho para impressão de documentos não enviados, -Always use Account's Email Address as Sender,Sempre use de Conta endereço de email como remetente, -Always use Account's Name as Sender's Name,Sempre use o nome da conta como nome do remetente, -Amend,Corrigir, -Amending,Correção, -Amount Based On Field,Total Baseado no Campo, -Amount Field,Campo Valor, -Amount must be greater than 0.,Montante deve ser maior que 0., -An error occured during the payment process. Please contact us.,"Ocorreu um erro durante o processo de pagamento. Por favor, entre em contato conosco.", -An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Um ícone do arquivo com extensão .ico. Deve ser de 16 x 16 px. Gerado usando um gerador de favicon. [favicon-generator.org], -Ancestors Of,Antepassados De, -Another transaction is blocking this one. Please try again in a few seconds.,"Outra transação está bloqueando essa. Por favor, tente novamente em alguns segundos.", -"Another {0} with name {1} exists, select another name","Outra {0} com o nome {1} existe , selecione outro nome", -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.,"Qualquer linguagem de impressora baseada em string pode ser usada. Escrever comandos simples requer conhecimento da linguagem nativa da impressora fornecida pelo fabricante da impressora. Por favor, consulte o manual do desenvolvedor fornecido pelo fabricante da impressora sobre como escrever seus comandos nativos. Esses comandos são processados no lado do servidor usando o Jinja Templating Language.", -"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Além de System Manager, as funções com o conjunto de permissões certas pode definir permissões para outros usuários para esse tipo de documento.", -Api Access,Acesso Api, -App,Aplicativo, -App Access Key,App Chave de Acesso, -App Client ID,App Cliente ID, -App Client Secret,App Cliente secreto, -App Name,Nome do App, -App Secret Key,App chave secreta, -App not found,App não encontrado, -App {0} already installed,O aplicativo {0} já está instalado, -App {0} is not installed,App {0} não está instalado, -Append To,Acrescente Para, -Append To can be one of {0},Para anexar pode ser um dos {0}, -Append To is mandatory for incoming mails,Para acrescentar é obrigatório para os e-mails recebidos, -"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Anexar como a comunicação contra este DocType (deve ter campos, ""status"", ""Assunto"")", -Applicable Document Types,Tipos de documentos aplicáveis, -Apply,Aplicar, -Apply Strict User Permissions,Aplicar permissões de usuário estrito, -Apply To All Document Types,Aplicar a todos os tipos de documentos, -Apply this rule if the User is the Owner,Aplicar esta regra se o usuário é o proprietário, -Apply to all Documents Types,Aplicar a todos os tipos de documentos, -Appreciate,Apreciar, -Appreciation,Apreciação, -Archive,Arquivar, -Archived,Arquivada, -Archived Columns,Colunas Arquivadas, -Are you sure you want to delete the attachment?,Tem certeza de que deseja excluir o anexo?, -Are you sure you want to relink this communication to {0}?,Você tem certeza que deseja relinkar a comunicação para {0}?, -Are you sure?,Você tem certeza?, -Arial,Arial, -"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Como uma prática recomendada , não atribua o mesmo conjunto de regras de permissão para diferentes funções. Em vez disso, definir várias funções para o mesmo usuário.", -Assign Condition,Atribuir condição, -Assign To Users,Atribuir aos usuários, -"Assign one by one, in sequence","Atribuir um por um, em seqüência", -Assign to me,Atribuir para mim, -Assign to the one who has the least assignments,Atribuir a quem tem menos atribuições, -Assigned,Atribuído, -Assigned By,Atribuído por, -Assigned By Full Name,Atribuído por Nome completo, -Assigned By Me,Atribuído por Mim, -Assigned To,Atribuído a, -Assigned To/Owner,Atribuído a / Proprietário, -Assignment,Tarefa, -Assignment Complete,Atribuição Concluída, -Assignment Completed,Atribuição Concluída, -Assignment Rule,Regra de Atribuição, -Assignment Rule User,Usuário da regra de atribuição, -Assignment Rules,Regras de Atribuição, -Assignment closed by {0},Atribuição fechado por {0}, -Assignment for {0} {1},Atribuição para {0} {1}, -Atleast one field of Parent Document Type is mandatory,Pelo menos um campo do tipo de documento pai é obrigatório, -Attach,Anexar, -Attach Document Print,Anexar Cópia do Documento, -Attach Image,Anexar Imagem, -Attach Print,Anexar cópia, -Attach Your Picture,Anexe sua Imagem, -Attach file for Import,Anexar arquivo para importação, -Attach files / urls and add in table.,Anexe arquivos / URLs e adicione na tabela., -Attached To DocType,Anexado ao Doctype, -Attached To Field,Relacionado ao campo, -Attached To Name,Anexado Para Nome, -Attachment Limit (MB),Limite de Anexo (MB), -Attachment Removed,Anexo Removido, -Attempting Connection to QZ Tray...,Tentando conexão com a bandeja QZ ..., -Attempting to launch QZ Tray...,Tentativa de lançar o QZ Tray ..., -Auth URL Data,Dados de URL de autenticação, -Authenticating...,Autenticando ..., -Authentication,Autenticação, -Authentication Apps you can use are: ,Os aplicativos de autenticação que você pode usar são:, -Authentication Credentials,Credenciais de Autenticação, -Authorization Code,Código de autorização, -Authorize URL,Autorizar URL, -Authorized,Autorizado, -Auto,Auto, -Auto Email Report,Relatório por Email Automático, -Auto Name,Nome Automático, -Auto Reply Message,Resposta Automática, -Auto assignment failed: {0},Atribuição automática falhou: {0}, -Automatically Assign Documents to Users,Atribuir documentos automaticamente aos usuários, -Automation,Automação, -Avatar,Avatar, -Average,Média, -Average of {0},Média de {0}, -Avoid dates and years that are associated with you.,Evite datas e anos associados a você., -Avoid recent years.,Evite anos recentes., -Avoid sequences like abc or 6543 as they are easy to guess,"Evite sequências como abc ou 6543, pois são fáceis de adivinhar", -Avoid years that are associated with you.,Evite anos associados a você., -Awaiting Password,Aguardando Senha, -Away,Longe, -BCC,BCC, -Back to Desk,De volta à mesa, -Back to Login,Voltar para Login, -Background Color,Cor de Fundo, -Background Email Queue,Fila de Email em Segundo Plano, -Background Jobs,Tarefas em Segundo Plano, -Background Workers,Trabalhadores em Segundo Plano, -Backup,Cópia de segurança, -Backup Frequency,Frequência de Backup, -Backup Limit,Limite de backup, -Backup job is already queued. You will receive an email with the download link,O trabalho de backup já está em fila. Você receberá um e-mail com o link de download, -Backups,Backups, -Banner,Faixa, -Banner HTML,Faixa HTML, -Banner Image,Imagem do Banner, -Banner is above the Top Menu Bar.,A faixa está acima da barra de menu superior., -Bar,Barra, -Base Distinguished Name (DN),Base de dados de nome distinto (DN), -Based on Permissions For User,Com base em permissões para o usuário, -Beta,Beta, -Better add a few more letters or another word,Recomenda-se adicionar mais algumas letras ou colocar uma palavra adicional, -Between,Entre, -Bio,Bio, -Birth Date,Data de nascimento, -Block Module,Módulo Bloco, -Block Modules,Bloquear Módulos, -Blocked,Bloqueado, -Blog,Blog, -Blog Category,Categoria do Blog, -Blog Intro,Introdução do Blog, -Blog Introduction,Introdução do Blog, -Blog Post,Mensagem do Blog, -Blog Settings,Configurações do Blog, -Blog Title,Título do Blog, -Blogger,Blogueiro, -Bot,Bot, -Both DocType and Name required,Ambos DocType e Nome é obrigatório, -Both login and password required,Login e senha necessários, -Bounced,Bounced, -Braintree Settings,Configurações Braintree, -Braintree payment gateway settings,Configurações do gateway de pagamento Braintree, -Brand HTML,Marca HTML, -Brand Image,Imagem da Marca, -Breadcrumbs,Breadcrumbs, -Browser not supported,Navegador não suportado, -Brute Force Security,Segurança da força bruta, -Build Report,Criar relatório, -Bulk Delete,Excluir em massa, -Bulk Edit {0},Edição em Massa {0}, -Bulk Rename,Renomear em Massa, -Bulk Update,Alteração em Massa, -Busy,Ocupado, -Button,Botão, -Button Help,Botão de Ajuda, -Button Label,Etiqueta do botão, -Bypass Two Factor Auth for users who login from restricted IP Address,Bypass Two Factor Auth para usuários que fazem login do endereço IP restrito, -Bypass restricted IP Address check If Two Factor Auth Enabled,Ignorar verificação de endereço IP restrito se dois fatores de autenticação habilitados, -CC,CC, -"CC, BCC & Email Template","CC, BCC e modelo de e-mail", -CSS,CSS, -CSV,CSV, -Cache Cleared,Cache Limpo, -Calculate,Calcular, -Calendar Name,Nome do calendário, -Calendar View,Vista Calendário, -Call,Chamada Telefônica, -Can Read,Pode Ler, -Can Share,Pode Compartilhar, -Can Write,Pode Escrever, -Can't identify open {0}. Try something else.,Não é possível identificar aberto {0}. Tente outra coisa., -Can't save the form as data import is in progress.,Não é possível salvar o formulário à medida que a importação de dados está em andamento., -Cancel {0} documents?,Cancelar {0} documentos?, -Cancelled Document restored as Draft,Documento Cancelado restaurado como Rascunho, -Cancelling,Cancelando, -Cancelling {0},Cancelando {0}, -Cannot Remove,Não é Possível Remover, -Cannot cancel before submitting. See Transition {0},Não pode cancelar antes de enviar., -Cannot change docstatus from 0 to 2,Não é possível alterar docstatus 0-2, -Cannot change docstatus from 1 to 0,Não é possível alterar docstatus 1-0, -Cannot change header content,Não é possível alterar o conteúdo do cabeçalho, -Cannot change state of Cancelled Document. Transition row {0},Não é possível alterar o estado de Documento Cancelado ., -Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Não é possível alterar os detalhes do usuário na demo. Inscreva-se para uma nova conta em https://erpnext.com, -Cannot create a {0} against a child document: {1},Não é possível criar um {0} contra um documento filho: {1}, -Cannot delete Home and Attachments folders,Não é possível excluir pastas Inicial e Anexos, -Cannot delete file as it belongs to {0} {1} for which you do not have permissions,Não é possível excluir o arquivo como ele pertence a {0} {1} para o qual você não possui permissões, -Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Não é possível excluir ou cancelar porque {0} {1} está vinculado com {2} {3} {4}, -Cannot delete standard field. You can hide it if you want,Não é possível excluir campo padrão. Você pode escondê-lo se você quiser, -Cannot delete {0},Não é possível excluir {0}, -Cannot delete {0} as it has child nodes,"Não é possível excluir {0} , pois tem nós filhos", -"Cannot edit Standard Notification. To edit, please disable this and duplicate it","Não é possível editar a notificação padrão. Para editar, desative e duplique", -Cannot edit a standard report. Please duplicate and create a new report,"Não é possível editar um relatório padrão. Por favor, duplique e crie um novo relatório", -Cannot edit cancelled document,Não é possível editar documento cancelado, -Cannot edit standard fields,Não é possível editar campos padrão, -Cannot have multiple printers mapped to a single print format.,Não é possível ter várias impressoras mapeadas para um único formato de impressão., -Cannot link cancelled document: {0},Não é possível vincular documento cancelado: {0}, -Cannot map because following condition fails: ,Não é possível mapear porque seguinte condição de falha:, -Cannot move row,Não é possível mover a linha, -Cannot open instance when its {0} is open,"Não é possível abrir instância , quando o seu {0} é aberto", -Cannot open {0} when its instance is open,Não é possível abrir {0} quando sua instância está aberta, -Cannot remove ID field,Não é possível remover o campo ID, -Cannot set Notification on Document Type {0},Não é possível definir a notificação no tipo de documento {0}, -Cannot update {0},Não é possível atualizar {0}, -Cannot use sub-query in order by,"não pode usar sub-consulta, a fim de", -Cannot {0} {1},Não é possível {0} {1}, -Capitalization doesn't help very much.,"A senha não é boa o suficiente, mas será aceita.", -Card Details,Detalhes do cartão, -Categorize blog posts.,Categorizar posts., -Category Description,Descrição da Categoria, -Cent,Centavo, -"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.","Alguns documentos , como uma fatura , não deve ser trocada uma vez final. O estado final de tais documentos é chamado Enviado. Você pode restringir quais funções pode se submeter.", -Chain Integrity,Integridade da Corrente, -Chaining Hash,Chain Hash, -Change Label (via Custom Translation),Alterar etiqueta (via tradução personalizada), -Change Password,Alterar Senha, -"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (esconder , readonly , permissão etc )", -Channel,Canal, -Chart Name,Nome do gráfico, -Chart Options,Opções de gráfico, -Chart Source,Fonte do gráfico, -Chart Type,Tipo de gráfico, -Charts,Gráficos, -Chat,Chat, -Chat Background,Fundo de bate-papo, -Chat Message,Mensagem de bate-papo, -Chat Operators,Operadores de bate-papo, -Chat Profile,Perfil do bate-papo, -Chat Profile for User {0} exists.,Perfil de bate-papo para o usuário {0} existe., -Chat Room,Sala de bate-papo, -Chat Room Name,Nome da sala de bate-papo, -Chat Room User,Usuário da sala de bate-papo, -Chat Token,Token de bate-papo, -Chat Type,Tipo de bate-papo, -Chat messages and other notifications.,Mensagens do chat e outras notificações., -Check,Verifica, -Check Request URL,URL de solicitação de verificação, -"Check columns to select, drag to set order.","Verifique colunas para selecionar, arrastar para definir a ordem.", -Check this if you are testing your payment using the Sandbox API,Marque esta opção se você estiver testando o seu pagamento usando o API Sandbox, -Check this to pull emails from your mailbox,Marque para baixar os emails da sua caixa de emails, -Check which Documents are readable by a User,Confira quais os documentos são lidos por um Usuário, -Checking one moment,"Checando,nto", -Checksum Version,Versão Checksum, -Child Table Mapping,Mapeamento de tabela infantil, -Child Tables are shown as a Grid in other DocTypes,Tabelas secundárias são mostradas como uma grade em outros DocTypes, -Choose authentication method to be used by all users,Escolha o método de autenticação a ser usado por todos os usuários, -Clear Error Logs,Limpar Logs de Erro, -Clear User Permissions,Limpar permissões do usuário, -Clear all roles,Desmarque todas as funções, -"Clearing end date, as it cannot be in the past for published pages.","Apagar data de término, como não pode ser no passado para páginas publicadas.", -Click here to post bugs and suggestions,Clique aqui para enviar erros e sugestões, -Click here to verify,Clique aqui para verificar, -Click on the link below to complete your registration and set a new password,Clique no link abaixo para completar o seu registo e definir uma nova senha, -Click on the link below to download your data,Clique no link abaixo para baixar seus dados, -Click on the link below to verify your request,Clique no link abaixo para verificar sua solicitação, -Click table to edit,Clique na tabela para editar, -Click to Set Filters,Clique para definir filtros, -Clicked,Clicado, -Client Credentials,Credenciais no cliente, -Client Information,Informação ao cliente, -Client Script,Script de Cliente, -Client URLs,URLs do Cliente, -Client side script extensions in Javascript,Extensões de script do lado do cliente em Javascript, -Collapsible,Desmontável, -Collapsible Depends On,Depende dobrável, -Column,Coluna, -Column {0} already exist.,Coluna {0} já existe., -Column Break,Quebra de coluna, -Column Labels:,Rótulos de coluna:, -Column Name,Nome da coluna, -Column Name cannot be empty,Nome da coluna não pode estar em branco, -Columns,Colunas, -Columns based on,Colunas baseadas em, -Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Combinação de Tipo de Subsídio ( {0} ) e Tipo de Resposta ( {1} ) não permitido, -Comment By,Comentário por, -Comment Email,Comentário Email, -Comment Type,Tipo de Comentário, -Comment can only be edited by the owner,O comentário só pode ser editado pelo proprietário, -Commented on {0}: {1},Comentou sobre {0}: {1}, -Comments and Communications will be associated with this linked document,Comentários e comunicações serão associados com este documento relacionado, -Comments cannot have links or email addresses,Comentários não podem ter links ou endereços de e-mail, -Common names and surnames are easy to guess.,Os nomes comuns e sobrenomes são fáceis de adivinhar., -Communicated via {0} on {1}: {2},Comunicada via {0} em {1}: {2}, -Communication Type,Tipo de comunicação, -Company History,Histórico da Empresa, -Company Introduction,Introdução da Empresa, -Compiled Successfully,Compilado com sucesso, -Complete By,Finalizar até, -Complete Registration,Registro Completo, -Complete Setup,Instalação Concluída, -Completed By,Completado por, -Compose Email,Escrever um email, -Condition Detail,Detalhe da condição, -Conditions,Condições, -Configure Chart,Configurar Gráfico, -Configure Charts,Configurar Gráficos, -Confirm,Confirmar, -Confirm Deletion of Data,Confirme a exclusão de dados, -Confirm Request,Confirmar pedido, -Confirm Your Email,Confirme seu Email, -Confirmed,Confirmado, -Connected to QZ Tray!,Conectado ao QZ Tray!, -Connection Name,Nome da Conexão, -Connection Success,Sucesso de conexão, -Connection lost. Some features might not work.,Conexão perdida. Alguns recursos podem não funcionar., -Connector Name,Nome do conector, -Connector Type,Tipo de conector, -Contact Us Settings,Configurações do Fale Conosco, -"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opções de contato, como ""Perguntas sobre Vendas, Perguntas de suporte"", etc cada uma em uma nova linha ou separadas por vírgulas.", -Contacts,Contatos, -Content (HTML),Conteúdo (HTML), -Content (Markdown),Conteúdo (Markdown), -Content Hash,Hash do conteúdo, -Content web page.,Conteúdo da Página Web, -Conversation Tones,Tons de conversação, -Copyright,Direitos autorais, -Core,Núcleo, -Core DocTypes cannot be customized.,DocTypes principais não podem ser personalizados., -Could not connect to outgoing email server,Não foi possível conectar ao servidor de envio emails, -Could not find {0},Não foi possível encontrar {0}, -Could not find {0} in {1},Não foi possível localizar {0} em {1}, -Could not identify {0},Não foi possível identificar {0}, -Count,Contagem, -Country Name,Nome do País, -County,Município, -Create Chart,Criar gráfico, -Create New,Criar Novo, -Create Post,Criar postagem, -Create User Email,Criar e-mail de usuário, -Create a New Format,Criar um novo formato, -Create a new record,Crie um novo registro, -Create a new {0},Criar um(a) novo(a) {0}, -Create and Send Newsletters,Criar e enviar email marketing, -Create and manage newsletter,Crie e gerencie o boletim informativo, -Created,Criado, -Created Custom Field {0} in {1},Criado campo personalizado {0} em {1}, -Created On,Criado em, -Criticism,Crítica, -Criticize,Criticar, -Ctrl + Down,Ctrl + Seta para baixo, -Ctrl + Up,Ctrl + Seta para cima, -Ctrl+Enter to add comment,Ctrl+Enter para adicionar comentário, -Currency Name,Nome da Moeda, -Currency Precision,Precisão de moeda, -Current Mapping,Mapeamento atual, -Current Mapping Action,Ação de Mapeamento atual, -Current Mapping Delete Start,Mapeamento atual Excluir Início, -Current Mapping Start,Início do mapeamento atual, -Current Mapping Type,Tipo de mapeamento atual, -Currently Viewing,Atualmente Exibindo, -Currently updating {0},Atualmente atualizando {0}, -Custom,Personalizado, -Custom Base URL,URL Base Base, -Custom CSS,CSS Personalizado, -Custom DocPerm,DocPerm personalizado, -Custom Field,Campo Personalizado, -Custom Fields can only be added to a standard DocType.,Campos personalizados só podem ser adicionados a um DocType padrão., -Custom Fields cannot be added to core DocTypes.,Campos personalizados não podem ser adicionados aos principais DocTypes., -Custom Format,Formato Personalizado, -Custom HTML Help,Ajuda HTML Personalizado, -Custom JS,JS personalizado, -Custom Menu Items,Itens de Menu Personalizado, -Custom Report,Relatório Personalizado, -Custom Reports,Relatórios Personalizados, -Custom Role,Função Personalizada, -Custom Script,Script Personalizado, -Custom Sidebar Menu,Menu de personalização da barra lateral, -Custom Translations,Traduções Personalizadas, -Customization,Personalização, -Customizations Reset,Redefinição de Personalizações, -Customizations for {0} exported to:
{1},Personalizações para {0} exportadas para:
{1}, -Customize Form,Personalizar Formulário, -Customize Form Field,Personalizar Campo de Formulário, -"Customize Label, Print Hide, Default etc.","Personalizar Etiquetas, Cabeçalhos, Padrões, etc.", -Customize...,Personalizar..., -"Customized Formats for Printing, Email","Formatos Personalizados para Impressão, Email", -Customized HTML Templates for printing transactions.,Modelos HTML customizados para transações de impressão., -Cut,Cortar, -DESC,DESC, -Daily Event Digest is sent for Calendar Events where reminders are set.,O resumo de eventos diário é enviado para o Calendário de eventos onde os lembretes são definidos., -Danger,Perigo, -Dark Color,Cor Escura, -Dashboard Chart,Gráfico de Dashboard, -Dashboard Chart Link,Link do Gráfico de Dashboard, -Dashboard Chart Source,Origem do Gráfico de Dashboard, -Dashboard Name,Nome do Dashboard, -Dashboards,Dashboards, -Data,Dados, -Data Export,Exportação de Dados, -Data Import,Importação de dados, -Data Import Template,Modelo de Importação de Dados, -Data Migration,Migração de Dados, -Data Migration Connector,Conector de Migração de Dados, -Data Migration Mapping,Mapeamento de Migração de Dados, -Data Migration Mapping Detail,Detalhes do Mapeamento de Migração de Dados, -Data Migration Plan,Plano de Migração de Dados, -Data Migration Plan Mapping,Mapeamento do Plano de Migração de Dados, -Data Migration Run,Execução de Migração de Dados, -Data missing in table,Falta de dados na tabela, -Database Engine,Engine do Banco de Dados, -Database Name,Nome do Banco de Dados, -Date and Number Format,Data e Formato de número, -Date {0} must be in format: {1},A data {0} deve estar no formato: {1}, -Dates are often easy to guess.,Datas são frequentemente fáceis de adivinhar., -Day of Week,Dia da Semana, -Days After,Dias Após, -Days Before,Dias Antes, -Days Before or After,Dias Antes ou Após, -"Dear System Manager,","Caro Administrador do Sistema,", -"Dear User,","Querido usuário,", -Dear {0},Caro {0}, -Default Address Template cannot be deleted,Template endereço padrão não pode ser excluído, -Default Inbox,Caixa de Entrada Padrão, -Default Incoming,Padrão de Entrada, -Default Outgoing,Outgoing Padrão, -Default Print Format,Formato de impressão padrão, -Default Print Language,Idioma de impressão padrão, -Default Redirect URI,Padrão de redirecionamento URI, -Default Role at Time of Signup,Função padrão no momento da inscrição, -Default Sending,Padrão Envio, -Default Sending and Inbox,Padrão para Envio e Recebimento, -Default Sort Field,Campo de classificação padrão, -Default Sort Order,Ordem de classificação padrão, -Default Value,Valor padrão, -Default: "Contact Us",Padrão: "Fale Conosco", -DefaultValue,Valor padrão, -Define workflows for forms.,Defina fluxos de trabalho para formulários., -Defines actions on states and the next step and allowed roles.,"Define ações em status, o próximo passo e as funções com permissão.", -Defines workflow states and rules for a document.,Define o status de fluxo de trabalho e regras para um documento., -Delayed,Atrasado, -Delete Data,Excluir dados, -Delete comment?,Excluir comentário?, -Delete this record to allow sending to this email address,Excluir este registro para permitir o envio para esse endereço de email, -Delete {0} items permanently?,Excluir {0} itens permanentemente?, -Deleted,Excluído(a), -Deleted DocType,DocType Excluído, -Deleted Document,Documento Excluído, -Deleted Documents,Documentos excluídos, -Deleted Name,Nome Excluído, -Deleting {0},Excluindo {0}, -Depends On,Depende de, -Descendants Of,Descendentes De, -Desk,Mesa, -Desk Access,Acesso ao Ambiente de Trabalho, -Desktop Icon,Ícone da área de trabalho, -Desktop Icon already exists,Ícone da área de trabalho já existe, -Developer,Desenvolvedor, -Did not add,Não adicionado, -Did not cancel,Não cancelou, -Did not find {0} for {0} ({1}),Não encontrou {0} para {0} ( {1}), -Did not remove,Não removido, -"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","""Status"" diferentes em que esse documento pode existir. Como ""Aberto"", ""Aprovação Pendente"", etc", -Direct,Direto, -Direct room with {0} already exists.,Sala direta com {0} já existe., -Disable Auto Refresh,Desativar atualização automática, -Disable Count,Desativar Contagem, -Disable Customer Signup link in Login page,Desativar Link de Inscrição na Página de Login, -Disable Prepared Report,Desativar relatório preparado, -Disable Report,Desativar Relatório, -Disable SMTP server authentication,Desativar autenticação do servidor SMTP, -Disable Sidebar Stats,Desativar Estatísticas da Barra Lateral, -Disable Signup,Desativar Registre-se, -Disable Standard Email Footer,Desativar Rodapé Padrão do Email, -Discard,Descartar, -Display,exibição, -Display Depends On,Visualização depende, -Do not allow user to change after set the first time,Não permitir que o usuário altere após definir o primeiro tempo, -Do not edit headers which are preset in the template,Não edite cabeçalhos que estejam predefinidos no modelo, -Do not send Emails,Não envie e-mails, -Doc Event,Evento de Doc, -Doc Events,Doc Eventos, -Doc Status,Status do Documento, -DocField,DocField, -DocPerm,DocPerm, -DocShare,DocShare, -DocType {0} provided for the field {1} must have atleast one Link field,O DocType {0} fornecido para o campo {1} deve ter pelo menos um campo Link, -DocType can not be merged,DocType não podem ser mescladas, -DocType can only be renamed by Administrator,DocType só pode ser renomeado pelo Administrador, -DocType is a Table / Form in the application.,DocType é uma Tabela / Form na aplicação., -DocType must be Submittable for the selected Doc Event,DocType deve ser enviado para o Evento de Doc selecionado, -DocType on which this Workflow is applicable.,DocType em que este fluxo de trabalho é aplicável., -"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","O nome de DocType deve começar com uma letra e só pode consistir de letras, números, espaços e sublinhados", -Doctype required,Doctype obrigatório, -Document,Documento, -Document Follow,Rastrear Documento, -Document Follow Notification,Notificação de Rastreamento do Documento, -Document Queued,Documento em Fila de Espera, -Document Restored,Documento Restaurado, -Document Share Report,Relatório de Documentos Compartilhados, -Document States,Documento Unidos, -Document Type is not importable,Tipo de documento não é importável, -Document Type is not submittable,O tipo de documento não é submittable, -Document Type to Track,Tipo de Documento a Seguir, -Document Types,Tipos de documento, -Document can't saved.,O documento não pode ser salvo., -Document {0} has been set to state {1} by {2},O documento {0} foi definido para declarar {1} por {2}, -Documents,Documentos, -Documents assigned to you and by you.,Documentos atribuídos a você e por você., -Domain Settings,Configurações de Domínio, -Domains HTML,Domínios HTML, -"Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field","Não etiquetas HTML Encode HTML como <script> ou apenas caracteres como <ou>, uma vez que poderia ser usado intencionalmente neste campo", -Don't Override Status,Não Sobrescrever o Status, -Don't create new records,Não crie novos registros, -Don't have an account? Sign up,Não tem uma conta? Se inscreva, -"Don't know, ask 'help'","Não sei, peça 'ajuda'", -Download Data,Download de dados, -Download Files Backup,Download de backup de arquivos, -Download Link,Baixar link, -Download Report,Relatório de download, -Download Your Data,Baixe seus dados, -Download link for your backup will be emailed on the following email address: {0},Link de download para o seu backup será enviado por email no seguinte endereço de email: {0}, -Download with Data,Download com dados, -Drag and Drop tool to build and customize Print Formats.,Ferramenta de segure e arraste para construir e personalizar formatos de impressão., -Drag elements from the sidebar to add. Drag them back to trash.,Arraste os elementos da barra lateral para adicionálos. Arraste-os de volta para eliminar., -Dropbox Access Key,Dropbox Chave de Acesso, -Dropbox Access Secret,Segredo de Acesso Dropbox, -Dropbox Access Token,Token de acesso Dropbox, -Dropbox Settings,Configurações Dropbox, -Dropbox Setup,Configuração do Dropbox, -Dropbox access is approved!,O acesso ao Dropbox está aprovado!, -Dropbox backup settings,configurações de cópias de segurança para o Dropbox, -Duplicate Filter Name,Nome do filtro duplicado, -Dynamic Link,Link dinâmico, -Dynamic Report Filters,Filtros dinâmicos de relatórios, -ESC,ESC, -Edit Auto Email Report Settings,Editar configurações de relatório automático de e-mail, -Edit Custom HTML,Editar HTML Personalizado, -Edit DocType,Editar DocType, -Edit Filter,Editar Filtro, -Edit Format,Editar Formato, -Edit HTML,Editar HTML, -Edit Heading,Editar Cabeçalho, -Edit Properties,Editar Propriedades, -Edit to add content,Edite para adicionar conteúdo, -Edit {0},Edite {0}, -Editable Grid,Grid Editável, -Editing Row,Editando Linha, -Eg. smsgateway.com/api/send_sms.cgi,Por exemplo: smsgateway.com / api / send_sms.cgi, -Email Account Name,Nome da Conta de Email, -Email Account added multiple times,Conta de email adicionada várias vezes, -Email Addresses,Endereço de Email, -Email Domain,Domínio de Email, -"Email Domain not configured for this account, Create one?","Domínio de email não configurado para esta conta,. Criar um?", -Email Flag Queue,Flag Fila de Email, -Email Footer Address,Endereço no Rodapé do Email, -Email Group,Grupo de Email, -Email Group List,Lista do Grupo de Emails, -Email Group Member,Membro do Grupo de Emails, -Email Login ID,ID de login do e-mail, -Email Queue,Fila de Emails, -Email Queue Recipient,Email Queue Destinatário, -Email Queue records.,Registros da Fila de Emails., -Email Reply Help,Email Reply Help, -Email Rule,Regra de Email, -Email Server,Servidor de Email, -Email Settings,Configurações de Email, -Email Signature,Assinatura de Email, -Email Status,Satus do Email, -Email Sync Option,Opção Sync Email, -Email Templates for common queries.,Modelos de email para consultas comuns., -Email To,Email Para, -Email Unsubscribe,Cancelar inscrição de email, -Email has been marked as spam,O email foi marcado como spam, -Email has been moved to trash,O email foi movido para o lixo, -Email not sent to {0} (unsubscribed / disabled),Email não foi enviado para {0} (inscrição anulada / desativado), -Email not verified with {0},E-mail não verificado com {0}, -Emails are muted,Emails são silenciados, -Emails will be sent with next possible workflow actions,Os e-mails serão enviados com as próximas ações de fluxo de trabalho possíveis, -Embed image slideshows in website pages.,Incorporar apresentações de imagem em páginas do site., -Enable / Disable Domains,Ativar / Desativar Domínios, -Enable Auto Reply,Ativar resposta automática, -Enable Automatic Backup,Ativar backup automático, -Enable Chat,Ativar conversa, -Enable Comments,Ativação de comentários, -Enable Incoming,Ativar Entrada, -Enable Outgoing,Ativar Saída, -Enable Password Policy,Ativar política de senha, -Enable Print Server,Ativar servidor de impressão, -Enable Raw Printing,Ativar impressão bruta, -Enable Report,Ativar Relatório, -Enable Scheduled Jobs,Ativar Tarefas Agendadas, -Enable Social Login,Ativar Login Social, -Enable Two Factor Auth,Ativar dois fatores Auth, -Enabled email inbox for user {0},Caixa de entrada de e-mail ativada para o usuário {0}, -"Encryption key is invalid, Please check site_config.json","A chave de criptografia é inválida, verifique site_config.json", -End Date Field,Campo de data final, -End Date cannot be before Start Date!,A data de término não pode ser anterior à data de início!, -Endpoint URL,URL do endpoint, -Energy Point Log,Log de ponto de energia, -Energy Point Rule,Regra do ponto de energia, -Energy Point Settings,Configurações de ponto de energia, -Energy Points,Pontos de energia, -Enter Email Recipient(s),Digite email do Destinatário(s), -Enter Form Type,Digite o Tipo de Formulário, -"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"".","Insira campos de valor padrão (teclas) e valores. Se adicionar diversos valores para um campo, será escolhido o primeiro. Estes padrões também são utilizados para definir regras de permissão de ""correspondência. Para ver a lista de campos, vá a ""Personalizar Formulário"".", -Enter folder name,Digite o nome da pasta, -"Enter keys to enable login via Facebook, Google, GitHub.","Enter para ativar o login via Facebook , Google, GitHub .", -Enter python module or select connector type,Insira o módulo python ou selecione o tipo de conector, -"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Digite os parâmetros da URL estática aqui (por exemplo remetente=ERPNext, usuario=ERPNext, senha=1234, etc)", -Enter url parameter for message,Digite o parâmetro da url para mensagem, -Enter url parameter for receiver nos,Digite o parâmetro da url para os números de receptores, -Enter your password,Digite sua senha, -Entity Name,Nome da entidade, -Equals,Igual, -Error Message,Mensagem de erro, -Error Report,Reportar erro, -Error Snapshot,Snapshot de Erro, -Error in Custom Script,Erro no script personalizado, -Error in Notification,Erro na notificação, -Error in Notification: {},Erro na notificação: {}, -Error while connecting to email account {0},Erro ao conectar-se à conta de e-mail {0}, -Error while evaluating Notification {0}. Please fix your template.,Erro ao avaliar a notificação {0}. Por favor corrija seu modelo., -Error: Document has been modified after you have opened it,Erro: O documento foi modificado depois de aberto, -Error: Value missing for {0}: {1},Erro: Falta valor para {0}: {1}, -Errors in Background Events,Erros em Eventos em Segundo Plano, -Event Category,Categoria do Evento, -Event Participants,Participantes do Evento, -Event Type,Tipo de Evento, -Event and other calendars.,Evento e outros calendários., -Events in Today's Calendar,Eventos no calendário de hoje, -Everyone,Todos, -Example,Exemplo, -Example Email Address,Exemplo de Endereço de Email, -Example: {{ subject }},Exemplo: {{subject}}, -Excel,Excel, -Exception,Exceção, -Exception Type,Tipo de exceção, -Execution Time: {0} sec,Tempo de Execução: {0} seg, -Expert,Especialista, -Expiration time,Data de validade, -Expire Notification On,Expiram Notificação Lig, -Expires In,Expira em, -Expiry time of QR Code Image Page,Tempo de expiração da página de imagem de código QR, -Export All {0} rows?,Exportar todas as linhas {0}?, -Export Custom Permissions,Exportar Permissões Personalizadas, -Export Customizations,Exportar Personalizações, -Export Data,Exportar dados, -Export Data in CSV / Excel format.,Exportar dados no formato CSV / Excel., -Export Report: {0},Relatório de exportação: {0}, -Expose Recipients,Mostrar Destinatários, -"Expression, Optional","Expressão, Opcional", -Facebook,Facebook, -Failed to complete setup,Falha ao concluir a configuração, -Failed to connect to server,Falha ao conectar-se ao servidor, -Failed while amending subscription,Falha ao alterar a assinatura, -FavIcon,FavIcon, -Feedback Request,Solicitação de Feedback, -Fetch From,Buscar de, -Fetch If Empty,Buscar se Vazio, -Fetch Images,Buscar imagens, -Fetch attached images from document,Buscar imagens anexadas do documento, -Field "route" is mandatory for Web Views,O campo "rota" é obrigatório para Web Views, -Field "value" is mandatory. Please specify value to be updated,"O campo ""valor"" é obrigatório. Por favor, especifique o valor a ser atualizado", -Field Description,Descrição do Campo, -Field Maps,Mapas de campo, -Field Type,Tipo de Campo, -"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)","Campo que representa o status da transação no fluxo de trabalho (se o campo não estiver presente, um novo campo oculto personalizado será criado)", -Field to Track,Campo para rastrear, -Field type cannot be changed for {0},O tipo de campo não pode ser alterado para {0}, -Field {0} not found.,Campo {0} não encontrado., -Fieldname is limited to 64 characters ({0}),Fieldname é limitado a 64 caracteres ({0}), -Fieldname not set for Custom Field,Fieldname não definida para campo personalizado, -Fieldname which will be the DocType for this link field.,Nome do campo que será o DocType para este campo link., -Fieldname {0} cannot have special characters like {1},Fieldname {0} não pode ter caracteres especiais como {1}, -Fieldname {0} conflicting with meta object,Nome do campo {0} em conflito com meta-objeto, -Fields Multicheck,Campos Multicheck, -"Fields separated by comma (,) will be included in the ""Search By"" list of Search dialog box","Campos separados por vírgula (,) será incluído no "Pesquisar por" lista de caixa de diálogo Pesquisar", -Fieldtype,Tipo de Campo, -Fieldtype cannot be changed from {0} to {1} in row {2},FieldType não pode ser alterado a partir de {0} a {1} em linha {2}, -File '{0}' not found,Arquivo '{0}' não encontrado, -File Backup,Backup de arquivos, -File Name,Nome do arquivo, -File Size,Tamanho do arquivo, -File Type,Tipo de arquivo, -File URL,URL do arquivo, -File Upload,Upload de arquivos, -File Upload Disconnected. Please try again.,"Carregamento de arquivos desconectado. Por favor, tente novamente.", -File Upload in Progress. Please try again in a few moments.,"Carregamento de arquivos em andamento. Por favor, tente novamente em alguns instantes.", -File backup is ready,O backup do arquivo está pronto, -File not attached,Arquivo não anexado, -File size exceeded the maximum allowed size of {0} MB,O tamanho do arquivo excedeu o tamanho máximo permitido de {0} MB, -File too big,Arquivo muito grande, -File {0} does not exist,Arquivo {0} não existe, -Files,Arquivos, -Filter,Filtro, -Filter Data,Filtrar dados, -Filter List,Lista de filtros, -Filter Meta,Filtrar Meta, -Filter Name,Nome do filtro, -Filter Values,Valores de filtro, -Filter must be a tuple or list (in a list),O filtro deve ser uma tupla ou lista (em uma lista), -"Filter must have 4 values (doctype, fieldname, operator, value): {0}","O filtro deve ter 4 valores (doctype, fieldname, operador, valor): {0}", -Filter...,Filtre..., -Filtered by "{0}",Filtrados por "{0}", -Filters Display,Exibição dos Filtros, -Filters JSON,Filtros JSON, -Filters saved,Filtros salvos, -Find {0} in {1},Localizar {0} em {1}, -First Level,Primeiro nível, -First Success Message,Primeira mensagem de sucesso, -First Transaction,Primeira Transação, -First data column must be blank.,Primeira coluna de dados deve estar em branco., -First set the name and save the record.,"Primeiro, defina o nome e salve o registro.", -Flag,Bandeira, -Float,Float, -Float Precision,Precisão de Casas Decimais, -Fold,Dobrar, -Fold can not be at the end of the form,Fold não pode ser no final da forma, -Fold must come before a Section Break,Dobre deve vir antes de uma quebra de secção, -Folder,Pasta, -Folder name should not include '/' (slash),O nome da pasta não deve incluir '/' (slash), -Folder {0} is not empty,Pasta {0} não está vazio, -Follow,Segue, -Followed by,Seguido por, -Following fields are missing:,Seguintes campos estão faltando:, -Following fields have missing values:,Os campos a seguir estão em branco:, -Font,fonte, -Font Size,Tamanho da Fonte, -Fonts,Fontes, -Footer,Rodapé, -Footer HTML,HTML de rodapé, -Footer Items,Itens do Rodapé, -Footer will display correctly only in PDF,Rodapé será exibido corretamente somente em PDF, -For Document Type,Para o tipo de documento, -"For Links, enter the DocType as range.\nFor Select, enter list of Options, each on a new line.","Para os Links, insira o DocType como intervalo. Para Selecionar, insira-os na lista de Opções, cada um numa nova linha.", -For User,Para o Usuário, -For Value,Por valor, -"For currency {0}, the minimum transaction amount should be {1}","Para a moeda {0}, o valor mínimo da transação deve ser {1}", -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.,"Por exemplo, se você cancelar e corrigir o INV004, ele vai se tornar um novo documento chamado INV004-1. Isso ajuda você a manter o controle de cada alteração.", -"For example: If you want to include the document ID, use {0}","Por exemplo: Se você quiser incluir a ID do documento, use {0}", -"For updating, you can update only selective columns.","Para a atualização, você pode atualizar colunas só seletivos.", -For {0} at level {1} in {2} in row {3},Por {0} a nível {1} em {2} na linha {3}, -Force,Força, -Force Show,Forçar Exibição, -Forgot Password,Esqueci a Senha, -Forgot Password?,Esqueceu a senha?, -Form Customization,Personalização de Formulário, -Form Settings,Configurações de formulário, -Format,Formato, -Format Data,Formato de dados, -Forward To Email Address,Encaminhar para Email, -Fraction,Fração, -Fraction Units,Unidades Fracionadas, -Frames,Frames, -Frappe,Frappe, -Frappe Framework,Frappe Framework, -Friendly Title,Título Amigável, -From Date Field,Do campo de data, -From Document Type,Do tipo de documento, -From Full Name,De nome completo, -Full Page,Página completa, -Fw: {0},Fw: {0}, -GCalendar Sync ID,ID de sincronização do GCalendar, -GMail,Gmail, -Gantt,Gantt, -Gateway,Porta de entrada, -Gateway Controller,Gateway Controller, -Gateway Settings,Configurações do Gateway, -Generate Keys,Gerar Chaves, -Generate New Report,Gerar novo relatório, -Generated File,Arquivo gerado, -Geo,Geo, -Geolocation,Geolocalização, -Get Alerts for Today,Obter Alertas para Hoje, -Get Contacts,Obter contatos, -Get Fields,Obter campos, -Get your globally recognized avatar from Gravatar.com,Obtenha seu avatar globalmente reconhecido de Gravatar.com, -GitHub,GitHub, -Give Review Points,Dê pontos de revisão, -Global Unsubscribe,Cancelar Inscrição Global, -Go to the document,Vá para o documento, -Go to this URL after completing the form (only for Guest users),Vá para este URL depois de preencher o formulário (apenas para usuários convidados), -Go to {0},Vá para {0}, -Go to {0} List,Ir para a {0} lista, -Go to {0} Page,Ir para {0} Página, -Google,Google, -Google Analytics ID,ID do Google Analytics, -Google Calendar ID,ID da Agenda do Google, -Google Font,Google Font, -Google Services,Google Services, -Grant Type,Tipo Grant, -Group Name,Nome do grupo, -Group name cannot be empty.,O nome do grupo não pode estar vazio., -Groups of DocTypes,Grupos de DocTypes, -HTML,HTML, -HTML Editor,Editor de HTML, -"HTML Header, Robots and Redirects","Cabeçalho HTML, Robôs e Redirecionamentos", -HTML for header section. Optional,HTML para a seção de cabeçalho. opcional, -Half,Metade, -Has Attachment,possui anexo, -Has Attachments,Tem anexos, -Has Domain,Tem domínio, -Has Role,Tem Função, -Has Web View,Tem Web View, -Have an account? Login,Possui cadastro? Entre, -Header,Cabeçalho, -Header HTML,HTML de cabeçalho, -Header HTML set from attachment {0},Conjunto HTML de cabeçalho do anexo {0}, -Header Image,Imagem de cabeçalho, -Headers,Cabeçalhos, -Heading,Título, -Hello {0},Olá {0}, -Hello!,Olá!, -Help Articles,Artigo de Ajuda, -Help Category,Categoria de Ajuda, -Help on Search,Ajuda na Pesquisa, -"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ajuda: Para vincular a outro registro no sistema, use "# Form / Nota / [Nota Name]" como a ligação URL. (Não use "http://")", -Helvetica,Helvetica, -Hi {0},Oi {0}, -Hide Copy,Ocultar Cópia, -Hide Footer Signup,Esconder Link de Inscrição do Rodapé, -Hide Sidebar and Menu,Ocultar barra lateral e menu, -Hide Standard Menu,Esconder Menu Padrão, -Hide Weekends,Ocultar finais de semana, -Hide details,Ocultar Detalhes, -Hide footer in auto email reports,Ocultar o rodapé nos relatórios de e-mail automático, -Higher priority rule will be applied first,Regra de prioridade mais alta será aplicada primeiro, -Highlight,Realçar, -"Hint: Include symbols, numbers and capital letters in the password","Dica: Inclua símbolos, números e letras maiúsculas na senha", -Home Page,Pagina inicial, -Home Settings,Configurações iniciais, -Home/Test Folder 1,Início / Teste pasta 1, -Home/Test Folder 1/Test Folder 3,Pasta Principal / Teste 1 / Teste Pasta 3, -Home/Test Folder 2,Início / Teste pasta 2, -Host,Host, -Hostname,Nome do Host, -"How should this currency be formatted? If not set, will use system defaults","Como essa moeda deve ser formatada? Se não for definido, serão usados os padrões do sistema", -I found these: ,Eu encontrei estes:, -ID,ID, -ID (name) of the entity whose property is to be set,ID (nome) da entidade cuja propriedade é para ser definida, -Icon will appear on the button,O ícone aparecerá no botão, -Identity Details,Detalhes da identidade, -Idx,Idx, -"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","Se a opção Aplicar permissão de usuário estrito estiver marcada e a permissão de usuário for definida para um DocType para um usuário, todos os documentos onde o valor do link estiver em branco não serão exibidos para esse usuário", -If Checked workflow status will not override status in list view,Uma vez selecionado o status do fluxo de trabalho não sobrescreverá o status do documentos na visualização da lista, -If Owner,Se proprietário, -"If a Role does not have access at Level 0, then higher levels are meaningless.","Se uma função não tem acesso no nível 0, então os níveis mais altos são irrelevantes.", -"If checked, all other workflows become inactive.","Se marcada, todos os outros fluxos de trabalho tornam-se inativos.", -"If checked, this field will be not overwritten based on Fetch From if a value already exists.","Se marcado, este campo não será sobrescrito com base em Buscar de se um valor já existir.", -"If checked, users will not see the Confirm Access dialog.","Se selecionada, s usuáários não verão a janela Confirmar Accesso.", -"If disabled, this role will be removed from all users.",Se esta função for desativada será removida em todos os usuários., -"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Se ativado, o usuário pode efetuar login a partir de qualquer endereço IP usando a autenticação de dois fatores, isso também pode ser definido para todos os usuários nas configurações do sistema", -"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","Se ativado, todos os usuários podem efetuar login a partir de qualquer endereço IP usando a autenticação de dois fatores. Isso também pode ser definido apenas para usuários específicos na página do usuário", -"If enabled, changes to the document are tracked and shown in timeline","Se ativado, as alterações no documento são rastreadas e mostradas na linha do tempo", -"If enabled, document views are tracked, this can happen multiple times","Se ativado, as visualizações de documentos são rastreadas, isso pode acontecer várias vezes", -"If enabled, the document is marked as seen, the first time a user opens it","Se ativado, o documento é marcado como visto, a primeira vez que um usuário o abre", -"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.","Se ativado, a força da senha será aplicada com base no valor Minimum Password Score. Um valor de 2 sendo médio forte e 4 sendo muito forte.", -"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Se ativado, os usuários que fizerem login a partir do Endereço IP restrito não serão solicitados para autenticação de dois fatores", -"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","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.", -If non standard port (e.g. 587),"Se não for a porta padrão (por exemplo, 587)", -"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Se não porta padrão (por exemplo, 587). Se no Google Cloud, tente a porta 2525.", -"If not set, the currency precision will depend on number format","Se não for definido, a precisão da moeda dependerá do formato de número", -If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n,"Se a condição for satisfeita, o usuário será recompensado com os pontos. por exemplo. doc.status == 'Closed'", -"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Se o usuário tiver alguma função selecionada, então o usuário torna-se um ""Usuário do Sistema"". Um ""Usuário do Sistema"" tem acesso à área de trabalho", -"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Se estas instruções não forem úteis, dê sua sugestão no GitHub.", -"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Se isso estiver marcado, linhas com dados válidos serão importadas e linhas inválidas serão despejadas em um novo arquivo para você importar mais tarde.", -If user is the owner,Se o usuário é o proprietário, -"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Se você estiver atualizando, por favor selecione ""Substituir"" linhas outra existentes não serão excluídos.", -If you are updating/overwriting already created records.,Se você está atualizando / substituindo registros já criados., -"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Se você estiver fazendo upload de novos registros, a coluna ""Naming Series"" torna-se obrigatória, se presente.", -"If you are uploading new records, leave the ""name"" (ID) column blank.","Se você estiver fazendo upload de novos registros, deixe a coluna ""name"" (ID) em branco.", -If you don't want to create any new records while updating the older records.,Se você não quer criar novos registros enquanto atualiza os registros mais antigos., -"If you set this, this Item will come in a drop-down under the selected parent.","Se você definir isso, este item virá em um drop-down sob o pai selecionado .", -"If you think this is unauthorized, please change the Administrator password.","Se você acha que isso não é autorizado, por favor mude a senha do administrador.", -"If your data is in HTML, please copy paste the exact HTML code with the tags.","Se os dados estiverem em HTML, por favor, copie e cole o código HTML exato com as tags.", -Ignore User Permissions,Ignorar permissões de usuári, -Ignore XSS Filter,Ignorar Filtro XSS, -Ignore attachments over this size,Ignorar anexos maiores que este tamanho, -Ignore encoding errors,Ignorar erros de codificação, -Ignored: {0} to {1},Ignorados: {0} para {1}, -Illegal Access Token. Please try again,"Ilegal acesso token. Por favor, tente novamente", -Illegal Document Status for {0},Status ilegal do documento para {0}, -Image Field,Campo de Imagem, -Image Link,Link da Imagem, -Image field must be a valid fieldname,Campo de imagem deve ser um nome de campo válido, -Image field must be of type Attach Image,Campo de imagem deve ser do tipo Anexar Imagem, -Images,Imagens, -Implicit,Implícito, -Import,Importar, -Import Email From,Importar Email do, -Import Status,Status da importação, -Import Subscribers,Importar Inscritos, -Import Zip,Importar Zip, -In Filter,No Filtro da Lista, -In Global Search,Na Busca Global, -In Grid View,Na Visualização do Grid, -In Hours,Em horas, -In List View,Mostrar na Visualização da Lista, -In Preview,Na pré-visualização, -In Reply To,Em resposta a, -In Standard Filter,Em Filtro Padrão, -In Valid Request,Pedido inválido, -In points. Default is 9.,Em pontos. O padrão é 9., -In seconds,Em segundos, -Include Search in Top Bar,Incluem a busca no Top Bar, -"Include symbols, numbers and capital letters in the password","Inclua símbolos, números e letras maiúsculas na senha", -Incoming email account not correct,A conta de e-mail recebida não é correta, -Incomplete login details,Detalhes de login incompletos, -Incorrect User or Password,Usuário ou Senha Incorreta, -Incorrect Verification code,Código de verificação incorreto, -Incorrect value in row {0}: {1} must be {2} {3},Valor incorreto na linha {0} : {1} deve ser {2} {3}, -Incorrect value: {0} must be {1} {2},Valor incorreto: {0} deve ser {1} {2}, -Index,Índice, -Indicator,Indicador, -Info,Informações, -Info:,Info:, -Initial Sync Count,Contagem de sincronização inicial, -InnoDB,InnoDB, -Insert Above,Inserir Acima, -Insert After,Inserir Após, -Insert After cannot be set as {0},Depois de inserir não pode ser definido como {0}, -"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","O campo Inserir Depois '{0}' mencionado no Campo Personalizado '{1}', com rótulo '{2}', não existe", -Insert Below,Inserir Abaixo, -Insert Column Before {0},Inserir coluna antes de {0}, -Insert Style,Inserir Estilo, -Insert new records,Inserir novos registros, -Instructions Emailed,Instruções Emailed, -Insufficient Permission for {0},Permissão insuficiente para {0}, -Int,Inteiro, -Integration Request,Pedido de Integração, -Integration Request Service,Serviço de Requisição de Integração, -Integration Type,Tipo de Integração, -Integrations,Integrações, -Integrations can use this field to set email delivery status,Integrações pode usar este campo para definir o status de entrega de email, -Internal Server Error,Erro do Servidor Interno, -Internal record of document shares,Registro interno de ações de documentos, -Introduce your company to the website visitor.,Apresente sua empresa para o visitante do site., -Introductory information for the Contact Us Page,Informação introdutória para a página Fale Conosco, -Invalid,Inválido, -Invalid "depends_on" expression,Expressão "dependente" dependente inválida, -Invalid Access Key ID or Secret Access Key.,ID de chave de acesso inválido ou chave de acesso secreto., -Invalid CSV Format,Formato inválido de CSV, -Invalid Home Page,Inválido Página Inicial, -Invalid Link,Fazer a ligação inválido, -Invalid Login Token,Inválido símbolo de logon, -Invalid Login. Try again.,Login inválido. Tente novamente., -Invalid Mail Server. Please rectify and try again.,"Mail Server inválido . Por favor, corrigir e tentar novamente.", -Invalid Outgoing Mail Server or Port,Inválido Outgoing Mail Server ou Porto, -Invalid Output Format,Formato de saída inválido, -Invalid Password,senha inválida, -Invalid Password:,Senha inválida:, -Invalid Request,Requisição Inválida, -Invalid Search Field {0},Campo de pesquisa inválido {0}, -Invalid Subscription,Inscrição inválida, -Invalid Token,Token inválido, -Invalid User Name or Support Password. Please rectify and try again.,"Nome de usuário ou senha inválidos. Por favor, corrigir e tentar novamente.", -Invalid column,Coluna inválida, -Invalid field name {0},Nome do campo inválido {0}, -Invalid fieldname '{0}' in autoname,nome do campo inválido '{0}' em autoname, -Invalid file path: {0},Caminho de arquivo inválido: {0}, -Invalid login or password,Login ou senha inválidos, -Invalid module path,Caminho do módulo inválido, -Invalid naming series (. missing),Série de nomes inválido (. Ausente), -Invalid payment gateway credentials,credenciais de gateway de pagamento inválidos, -Invalid recipient address,Endereço do destinatário inválido, -Invalid {0} condition,Condição inválida {0}, -Inverse,Inverso, -Is,É, -Is Attachments Folder,É Pasta de Anexos, -Is Child Table,É Tabela Filho, -Is Custom Field,É campo personalizado, -Is First Startup,É o primeiro arranque, -Is Folder,É Pasta, -Is Global,É global, -Is Globally Pinned,É fixado globalmente, -Is Home Folder,É Home Folder, -Is Mandatory Field,É campo obrigatório, -Is Pinned,Está preso, -Is Primary Contact,É o contato principal, -Is Private,É privada, -Is Published Field,É Publicado campo, -Is Published Field must be a valid fieldname,É Publicado O campo deve ser um nome do campo válido, -Is Single,É Único, -Is Spam,é Spam, -Is Standard,É Padrão, -Is Submittable,Pode ser Enviado, -Is Table,É Tabela, -Is Your Company Address,É o seu endereço comercial, -It is risky to delete this file: {0}. Please contact your System Manager.,É arriscado excluir este arquivo: {0}. Entre em contato com o administrador do sistema., -Item cannot be added to its own descendents,O artigo não pode ser acrescentado para os seus próprios descendentes, -JS,JS, -JSON,JSON, -JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Formato JavaScript: frappe.query_reports [' REPORTNAME '] = {}, -Javascript to append to the head section of the page.,Javascript para acrescentar ao cabeçalho da página., -Jinja,Jinja, -John Doe,John Doe, -Kanban,Kanban, -Kanban Board Column,Coluna do Painel Kanban, -Kanban Board Name,Nome do Painel Kanban, -Karma,Karma, -Keep track of all update feeds,Acompanhe todos os feeds de atualização, -Keeps track of all communications,Mantém o controle de todas as comunicações, -Key,Chave, -Knowledge Base,Base de Conhecimento, -Knowledge Base Contributor,Colaborador da Base de Conhecimento, -Knowledge Base Editor,Editor da Base de Conhecimento, -LDAP Email Field,Campo do Email LDAP, -LDAP First Name Field,Campo Primeiro Nome do LDAP, -LDAP Not Installed,LDAP não instalado, -LDAP Search String,Palavra de Busca do LDAP, -"LDAP Search String needs to end with a placeholder, eg sAMAccountName={0}","A string de pesquisa do LDAP precisa terminar com um espaço reservado, por exemplo, sAMAccountName = {0}", -LDAP Security,Segurança LDAP, -LDAP Server Url,Servidor LDAP Url, -LDAP Username Field,Campo Nome de Usuário do LDAP, -LDAP is not enabled.,O LDAP não está ativado., -Label Help,Ajuda sobre Etiquetas, -Label and Type,Etiqueta e Tipo, -Label is mandatory,Etiqueta é obrigatório, -Landing Page,Página de chegada, -Language,Idioma, -Language Code,Código do Idioma, -"Language, Date and Time settings","Configurações de Idioma , Data e Hora", -Last Active,Ativo pela última vez, -Last IP,Último IP, -Last Known Versions,Últimas versões conhecidas, -Last Login,Último Login, -Last Message,Última mensagem, -Last Modified By,Última Alteração por, -Last Modified Date,Última Data Modificada, -Last Modified On,Última Alteração em, -Last Month,Mês passado, -Last Point Allocation Date,Última data de alocação de ponto, -Last Quarter,Ultimo quarto, -Last Synced On,Última sincronização em, -Last Updated By,Última atualização por, -Last Updated On,Última atualização em, -Last User,Último usuário, -Last Week,Semana passada, -Last Year,Ano passado, -Last synced {0},Última sincronização {0}, -Leave a Comment,Deixe um comentário, -Leave blank to repeat always,Deixe em branco para repetir sempre, -Leave this conversation,Deixar essa conversa, -Left this conversation,Deixou esta conversa, -Length,Comprimento, -Length of {0} should be between 1 and 1000,Comprimento de {0} deve ser entre 1 e 1000, -Let's avoid repeated words and characters,Vamos evitar palavras e caracteres repetidos, -Let's prepare the system for first use.,Vamos preparar o sistema para a primeira utilização., -Letter,Carta, -Letter Head Based On,Carta de cabeça com base em, -Letter Head Image,Carta cabeça imagem, -Letter Head Name,Nome do timbrado, -Letter Head in HTML,Cabeça Carta em HTML, -Level Name,Nome do nível, -Liked,Gostou, -Liked By,Gostou por, -Liked by {0},Aprovado por {0}, -Likes,Gostos, -Limit Number of DB Backups,Número limite de backups de banco de dados, -Line,Linha, -Link DocType,Relacionar ao DocType, -Link Expired,Link expirado, -Link Name,Nome do Link, -Link Title,Título do Link, -"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link da home page do site. Links padrão (index, login, products, blog, about, contact)", -Link to the page you want to open. Leave blank if you want to make it a group parent.,Link para a página que você deseja abrir. Deixe em branco se você quiser torná-lo um pai grupo., -Linked,Relacionado, -Linked With,Relacionado com, -Linked with {0},Ligado com {0}, -Links,Links, -List,Lista, -List Filter,Filtro de lista, -List View Setting,Configuração de exibição de lista, -List a document type,Lista de um tipo de documento, -"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Lista como [{ "label": _ ( "Jobs"), "route": "empregos"}]", -List of backups available for download,Lista de backups disponíveis para download, -List of patches executed,Lista de correções executado, -List of themes for Website.,Lista dos temas para o site., -Load Balancing,Balanceamento de carga, -Loading,Carregando, -Local DocType,DocType local, -Local Fieldname,Nome do campo local, -Local Primary Key,Chave primária local, -Locals,Locais, -Log Details,Detalhes do registro, -Log of Scheduler Errors,Log de Erros Scheduler, -Log of error during requests.,Log de erro durante a solicitações., -Log of error on automated events (scheduler).,Log de erro sobre eventos automatizados ( programador ) ., -Logged Out,Deslogado, -Logged in as Guest or Administrator,Conectado como Convidado ou Administrador, -Login,Entrar, -Login After,Login após, -Login Before,Login antes, -Login Id is required,ID de login é necessária, -Login Required,Necessário Login, -Login Verification Code from {},Código de verificação de login de {}, -Login and view in Browser,Faça login e visualize no navegador, -Login not allowed at this time,Entrada não permitida neste momento, -"Login session expired, refresh page to retry","A sessão de login expirou, atualize a página para tentar novamente", -Login to comment,Faça login para comentar, -Login token required,É necessário o token de login, -Login with LDAP,Logar com LDAP, -Logout,Sair, -Long Text,Texto Longo, -Looks like something is wrong with this site's Paypal configuration.,Parece que algo está errado com a configuração do Paypal deste site., -Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Parece que algo está errado com a configuração de gateway de pagamento deste site. Nenhum pagamento foi feito., -"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Parece que algo deu errado durante a transação. Desde que não tenham confirmado o pagamento, Paypal vai reembolsá-lo automaticamente esse valor. Se isso não acontecer, por favor, envie-nos um e-mail e mencionar a ID de Correlação: {0}.", -Madam,Senhora, -Main Section,Seção Principal, -Make "name" searchable in Global Search,Tornar "nome" pesquisável na Busca Global, -Make use of longer keyboard patterns,Use uma combinação de letras e números mais longa, -Manage Third Party Apps,Gerencie aplicativos de terceiros, -Mandatory Information missing:,Informações obrigatórias ausente:, -Mandatory field: set role for,Campo obrigatório: definir a função para, -Mandatory field: {0},Campo obrigatório: {0}, -"Mandatory fields required in table {0}, Row {1}","Os campos obrigatórios exigidos na tabela {0}, linha {1}", -Mandatory fields required in {0},Os campos obrigatórios exigidos no {0}, -Mandatory:,Obrigatório:, -Mapping Name,Mapeando o Nome, -Mappings,Mapeamentos, -Mark as Read,Marcar como lido, -Mark as Spam,Marcar como spam, -Mark as Unread,Marcar como não lido, -Markdown,Desconto, -Markdown Editor,Editor de Markdown, -Marked As Spam,Marcado como spam, -Max 500 records at a time,Máximo de 500 registros por vez, -Max Attachment Size (in MB),Max tamanho do anexo (em MB), -Max Attachments,Máx. de Anexos, -Max Length,Comprimento máximo, -Max Value,Max Valor, -Max width for type Currency is 100px in row {0},Largura máxima para o tipo de moeda é 100px na linha {0}, -Maximum Attachment Limit for this record reached.,Limite máximo de anexo para este recorde atingido., -Maximum {0} rows allowed,Máximo de {0} linhas permitido, -"Meaning of Submit, Cancel, Amend","Significado de Enviar, Cancelar, Corrigir", -Mention transaction completion page URL,Mencione transação página de conclusão do URL, -Mentions,Menções, -Menu,Menu, -Merchant ID,ID do comerciante, -Merge with existing,Mesclar com existente, -Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,A fusão só é possível entre o grupos, -Message Count,Contagem de mensagens, -Message ID,ID da Mensagem, -Message Parameter,Parâmetro da mensagem, -Message Preview,Pré-visualização da mensagem, -Message clipped,Mensagem cortada, -Message not setup,Mensagem não configurada, -Message to be displayed on successful completion (only for Guest users),Mensagem a ser exibida na conclusão bem sucedida (somente para usuários convidados), -Message-id,Message-id, -Meta Tags,Meta Tags, -Migration ID Field,ID de Campo de Migração, -Milestone,Milestone, -Milestone Tracker,Milestone Tracker, -Minimum Password Score,Score Mínimo de Senha, -Miss,Senhorita, -Missing Fields,Campos ausentes, -Missing parameter Kanban Board Name,Parâmetro faltando Kanban Board Name, -Missing parameters for login,Parâmetros que faltam para o login, -Models (building blocks) of the Application,Modelos (blocos de construção) do aplicativo, -Modified By,Modificado por, -Module,Módulo, -Module Def,Def. Módulo, -Module Name,Nome do Módulo, -Module Not Found,Módulo não encontrado, -Module Path,Caminho do módulo, -Module to Export,Módulo para Exportar, -Modules HTML,Módulos HTML, -Monospace,Monospace, -More articles on {0},Mais artigos sobre {0}, -More content for the bottom of the page.,Mais conteúdo na parte de baixo da página., -Most Used,Mais Usados, -Move To,Mover Para, -Move To Trash,Mover para lixeira, -Move to Row Number,Mover para o número da linha, -Mr,Sr., -Mrs,Sra, -Ms,Sra., -Multiple root nodes not allowed.,"Vários nós raiz, não é permitido .", -Multiplier Field,Campo Multiplicador, -Must be of type "Attach Image",Deve ser do tipo "Anexar Imagem", -Must have report permission to access this report.,Deve ter permissão para acessar relatório deste relatório., -Must specify a Query to run,Deve especificar uma consulta para executar, -Mute Sounds,Desativar Sons, -MyISAM,MyISAM, -Name Case,Caso Nome, -Name cannot contain special characters like {0},Nome não pode conter caracteres especiais como {0}, -Name not set via prompt,Nome não definido através Prompt, -Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Nome do Tipo de Documento (DocType) pretende que este campo a ser vinculado. por exemplo, o Cliente", -Name of the new Print Format,Nome do novo Formato de Impressão, -Name of {0} cannot be {1},Nome de {0} não pode ser {1}, -Names and surnames by themselves are easy to guess.,Os nomes e sobrenomes são fáceis de adivinhar., -Naming,Nomeação, -"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.
","Opções de Nomenclatura:
  1. field: [fieldname] - Por campo
  2. naming_series: - Por Naming Series (campo chamado naming_series deve estar presente
  3. Prompt - Solicitar um nome para o usuário
  4. [série] - Série por prefixo (separado por um ponto); por exemplo PRE. #####
  5. format: EXAMPLE- {MM} morewords {fieldname1} - {fieldname2} - {#####} - Substitua todas as palavras braced (nomes de campo, palavras de data (DD, MM, YY), série) pelo seu valor. Chaves externas, todos os caracteres podem ser usados.
", -Naming Series mandatory,Nomeando obrigatório Series, -Nested set error. Please contact the Administrator.,Erro conjunto aninhado . Entre em contato com o administrador., -New Activity,Nova Atividade, -New Chat,Novo Chat, -New Comment on {0}: {1},Novo comentário em {0}: {1}, -New Connection,Nova conexão, -New Custom Print Format,Novo Formato de Impressão Personalizado, -New Email,Novo Email, -New Email Account,Nova conta de email, -New Event,Novo Evento, -New Folder,Nova Pasta, -New Kanban Board,Novo Painel Kanban, -New Message from Website Contact Page,Nova Mensagem da Página de Contato do Site, -New Name,Novo Nome, -New Newsletter,Nova Newsletter, -New Password,Nova Senha, -New Password Required.,É necessário uma nova senha., -New Print Format Name,Novo nome do formato de impressão, -New Report name,Nome do novo Relatório, -New Value,Novo Valor, -New data will be inserted.,Novos dados serão inseridos., -New updates are available,Novas atualizações estão disponíveis, -New value to be set,Novo valor a ser definido, -New {0},Novo(a) {0}, -New {} releases for the following apps are available,Novas {} versões para os seguintes aplicativos estão disponíveis, -Newsletter Email Group,Grupo de Email de Newsletter, -Newsletter Manager,Gestor de Newsletter, -Newsletter has already been sent,A Newsletter já foi enviada, -"Newsletters to contacts, leads.",Email Marketing para Contatos e Clientes em Potencial., -Next Action Email Template,Modelo de email de próxima ação, -Next Actions HTML,Próxima Ações HTML, -Next Schedule Date,Próxima data programada, -Next Scheduled Date,Próxima data agendada, -Next State,Próximo Status, -Next Sync Token,Próximo token de sincronização, -Next actions,Próximas ações, -No Active Sessions,Nenhuma sessão ativa, -No Copy,Nenhuma Cópia, -No Email Account,Sem conta de email, -No Email Accounts Assigned,Não há contas de email Assigned, -No Emails,Nenhum Email, -No Label,Sem Rótulo, -No Permissions Specified,Não há permissões especificadas, -No Permissions set for this criteria.,Sem permissões definidas para este critério., -No Preview,Não há visualização, -No Preview Available,Não há visualização disponível, -No Printer is Available.,Nenhuma impressora está disponível., -No Results,Nenhum Resultado, -No Tags,Sem Tags, -No alerts for today,Não há alertas para hoje, -No comments yet,Ainda não há comentários, -No comments yet. Start a new discussion.,Ainda não há comentários. Iniciar uma nova discussão., -No data found in the file. Please reattach the new file with data.,Nenhum dado encontrado no arquivo. Recoloque o novo arquivo com dados., -No document found for given filters,Nenhum documento encontrado para determinados filtros, -No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type "Select".,Nenhum campo encontrado que possa ser usado como uma coluna Kanban. Use o formulário Personalizar para adicionar um campo personalizado do tipo "Selecionar"., -No file attached,Nenhum arquivo anexado, -No further records,Não há mais registros, -No matching records. Search something new,Não há registros correspondentes. Procure algo novo, -"No need for symbols, digits, or uppercase letters.","Não há necessidade de símbolos, dígitos ou letras maiúsculas.", -No of Columns,Nenhuma das Colunas, -No of Rows (Max 500),Número de linhas (max 500), -No of emails remaining to be synced,Nº de emails a serem sincronizados, -No permission for {0},Sem permissão para {0}, -No permission to '{0}' {1},Sem permissão para '{0} ' {1}, -No permission to read {0},Sem permissão para ler {0}, -No permission to {0} {1} {2},Sem permissão para {0} {1} {2}, -No records deleted,Nenhum registro foi excluído, -No records present in {0},Nenhum registro presente em {0}, -No records tagged.,Não há registros marcados., -No template found at path: {0},Nenhum modelo encontrado no caminho: {0}, -No {0} found,Nenhum(a) {0} encontrado(a), -No {0} mail,Nenhum {0}, -No {0} permission,Sem permissão {0}, -None: End of Workflow,Nenhum: Fim do fluxo de trabalho, -Not Allowed: Disabled User,Não permitido: Usuário desativado, -Not Ancestors Of,Não antepassados de, -Not Descendants Of,Não Descendentes De, -Not Equals,Diferente, -Not In,Não Presente, -Not Linked to any record,Não vinculado a nenhum registro, -Not Published,Não Publicado, -Not Saved,Não Salvo, -Not Seen,Não Visto, -Not Sent,Não Enviado, -Not Set,Não Selecionado, -Not a valid Comma Separated Value (CSV File),Não é um valor CSV válido (arquivo CSV), -Not a valid User Image.,Não é uma imagem de usuário válida., -Not a valid Workflow Action,Não é uma ação válida do fluxo de trabalho, -Not a valid user,Não é um usuário válido, -Not a zip file,Não é um arquivo zip, -Not allowed for {0}: {1},Não permitido para {0}: {1}, -Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Não permitido para {0}: {1} na linha {2}. Campo restrito: {3}, -Not allowed for {0}: {1}. Restricted field: {2},Não permitido para {0}: {1}. Campo restrito: {2}, -Not allowed to Import,Não é permitido importar, -Not allowed to change {0} after submission,Não é permitido alterar {0} após a apresentação, -Not allowed to print cancelled documents,Não permitido para imprimir documentos cancelados, -Not allowed to print draft documents,Não permitido para imprimir documentos de rascunho, -Not enough permission to see links,Não há permissão suficiente para ver links, -Not in Developer Mode,Você não está no modo de desenvolvedor, -Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Você não está no modo de desenvolvedor! Configure em site_config.json ou faça um DocType 'Personalizado'., -Note Seen By,Nota Vista por, -Note:,Nota:, -Note: By default emails for failed backups are sent.,"Nota: Por padrão, os e-mails para backups com falha são enviados.", -Note: Changing the Page Name will break previous URL to this page.,Nota: Alterar o Nome da Página irá interromper o URL anterior para esta página., -"Note: For best results, images must be of the same size and width must be greater than height.","Nota: Para obter melhores resultados, as imagens devem ter o mesmo tamanho e a largura deve ser maior que a altura.", -Note: Multiple sessions will be allowed in case of mobile device,Observação: Serão permitidas múltiplas sessões no caso de dispositivo móvel, -Nothing to show,Nada para mostrar, -Nothing to update,Nada para atualizar, -Notification,Notificação, -Notification Recipient,Destinatário da Notificação, -Notification Tones,Tons de notificação, -Notifications,Notificações, -Notifications and bulk mails will be sent from this outgoing server.,Notificações e emails em massa serão enviados por este servidor de saída., -Notify Users On Every Login,Notificar usuários em cada login, -Notify if unreplied,Informar se não for respondido, -Notify if unreplied for (in mins),Informar se não for respondido em (minutos), -Notify users with a popup when they log in,Notificar os usuários com um pop-up quando eles entram, -Number Format,Formato de número, -Number of Backups,Número de Backups, -Number of DB Backups,Número de backups de banco de dados, -Number of DB backups cannot be less than 1,Número de backups de banco de dados não pode ser menor que 1, -Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),O número de colunas para um campo numa Grelha (O Total de Colunas em um grid deve ser inferior a 11), -Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Número de colunas para um campo em uma lista ou de um Grid (Total de colunas deve ser inferior a 11), -OAuth Authorization Code,Código de Autorização OAuth, -OAuth Bearer Token,OAuth Bearer Token, -OAuth Client,Cliente OAuth, -OAuth Provider Settings,Configurações do Provedor OAuth, -OTP App,Aplicação OTP, -OTP Issuer Name,Nome da Emissora OTP, -OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret foi reiniciado. O novo registro será requerido no próximo login., -OTP secret can only be reset by the Administrator.,O Secretário OTP só pode ser redefinido pelo Administrador., -Office,Escritório, -Office 365,Office 365, -Old Password,Senha Antiga, -Old Password Required.,Senha antiga necessária., -Older backups will be automatically deleted,Os backups mais antigos serão apagados automaticamente, -"On {0}, {1} wrote:","Em {0}, {1} escreveu:", -"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Depois de enviados, os documentos enviados não podem ser alterados. Eles só podem ser cancelados e alterados.", -"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Depois de ter definido isso, os usuários só poderão ser acessar documentos capazes (ex. Blog Post) onde existe a ligação (por exemplo, Blogger ) .", -One Last Step,Um Último Passo, -One Time Password (OTP) Registration Code from {},Código de registro de senha de uma vez (OTP) de {}, -Only 200 inserts allowed in one request,São permitidas somente 200 inserções por solicitação, -Only Administrator can delete Email Queue,Somente o administrador pode deletar a fila de emails, -Only Administrator can edit,Somente o Administrador pode editar, -Only Administrator can save a standard report. Please rename and save.,"Somente o Administrador pode salvar um relatório padrão. Por favor, renomear e salvar.", -Only Administrator is allowed to use Recorder,Apenas o administrador tem permissão para usar o gravador, -Only Allow Edit For,Somente permite edição para, -Only Send Records Updated in Last X Hours,Somente Enviar Registros Atualizados em Últimas X Horas, -Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Somente os campos obrigatórios são necessários para novos registros. Você pode excluir colunas não-obrigatórias, se desejar.", -Only standard DocTypes are allowed to be customized from Customize Form.,Somente DocTypes padrão podem ser personalizados no Custom Form., -Only users involved in the document are listed,Somente usuários envolvidos no documento são listados, -Only {0} emailed reports are allowed per user,Somente {0} relatórios enviados poe email são permitidos por usuário, -Oops! Something went wrong,Ops! Aconteceu algo inesperado, -"Oops, you are not allowed to know that","Ops, você não tem permissão para saber isso", -Open Link,Abrir Link, -Open Source Applications for the Web,Aplicativos Open Source para a Web, -Open Translation,Open Translation, -Open a dialog with mandatory fields to create a new record quickly,Abra uma caixa de diálogo com campos obrigatórios para criar um novo registro rapidamente, -Open a module or tool,Abra um módulo ou ferramenta, -Open your authentication app on your mobile phone.,Abra seu aplicativo de autenticação em seu telefone celular., -Open {0},Abrir {0}, -Opened,Inaugurado, -Operator must be one of {0},O operador deve ser um dos {0}, -Option 1,Opção 1, -Option 2,Opção 2, -Option 3,Opção 3, -Optional: Always send to these ids. Each Email Address on a new row,Opcional: Sempre enviar para estes ids. Cada endereço de email em uma nova linha, -Optional: The alert will be sent if this expression is true,Opcional: O alerta será enviado se essa expressão é verdadeira, -Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opções 'Dynamic Link' tipo de campo deve apontar para um outro campo Ligação com opções como "TipoDoc ', -Options Help,Ajuda sobre Opções, -Options for select. Each option on a new line.,Opções para selecionar. Cada opção em uma nova linha., -Options not set for link field {0},Opções não definida para o campo link {0}, -Or login with,Ou faça login com, -Order,Pedido, -Org History,História da Organização, -Org History Heading,Cabeçalho da História da Organização, -Orientation,Orientação, -Original Value,Valor Original, -Outgoing email account not correct,Conta de e-mail de saída não correto, -Outlook.com,Outlook.com, -Output,Saída, -PDF,PDF, -PDF Page Size,Tamanho da página PDF, -PDF Settings,Configurações do PDF, -PDF generation failed,Geração de PDF falhou, -PDF generation failed because of broken image links,Geração de PDF falhou por causa de links de imagens quebradas, -PDF printing via "Raw Print" is not yet supported. Please remove the printer mapping in Printer Settings and try again.,A impressão em PDF por meio de "Impressão bruta" ainda não é suportada. Remova o mapeamento da impressora em Configurações da impressora e tente novamente., -Page HTML,Página HTML, -Page Length,Comprimento da página, -Page Name,Nome da Página, -Page Settings,Configurações da página, -Page has expired!,A página expirou!, -Page not found,Página não encontrada, -Page to show on the website\n,Página a mostrar no website, -Pages in Desk (place holders),Páginas na Desk (suportes do lugar), -Parent,Principal, -Parent Error Snapshot,Pai Snapshot de Erro, -Parent Label,Etiqueta Pai, -Parent Table,Tabela Pai, -Parent is required to get child table data,Pai é necessário para obter dados da tabela filho, -Parent is the name of the document to which the data will get added to.,Pai é o nome do documento ao qual os dados serão adicionados., -Partial Success,Sucesso parcial, -Partially Successful,Parcialmente bem sucedido, -Participants,Participantes, -Passive,Passivo, -Password Reset,Redefinição de Senha, -Password Updated,Senha Atualizada, -Password for Base DN,Senha para DN de base, -Password is required or select Awaiting Password,Senha é necessária ou selecione Aguardando senha, -Password not found,Senha não encontrada, -Password reset instructions have been sent to your email,Instruções de redefinição de senha foram enviadas para seu email, -Paste,Colar, -Patch,Remendo, -Patch Log,Log de Patches, -Path to CA Certs File,Caminho para o arquivo CA Certs, -Path to Server Certificate,Caminho para o certificado do servidor, -Path to private Key File,Caminho para o arquivo de chaves privado, -PayPal Settings,Configurações PayPal, -PayPal payment gateway settings,configurações de gateway de pagamento PayPal, -Payment Cancelled,Pagamento cancelado, -Payment Failed,Pagamento falhou, -Payment Success,Sucesso de pagamento, -Pending Approval,Aprovação pendente, -Pending Verification,verificação pendente, -Percent,Por cento, -Percent Complete,Percentagem completa, -Perm Level,Nível Permanente, -Permanent,Permanente, -Permanently Cancel {0}?,Cancelar Permanentemente {0} ?, -Permanently Submit {0}?,Confirmar Permanentemente {0} ?, -Permanently delete {0}?,Excluir Permanentemente {0} ?, -Permission Error,Erro de permissão, -Permission Level,Nível de Permissão, -Permission Levels,Níveis de Permissão, -Permission Rules,Regras de Permissão, -Permissions,Permissões, -Permissions are automatically applied to Standard Reports and searches.,As permissões são aplicadas automaticamente a relatórios e pesquisas padrão., -"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.","As permissões são definidas em Funções e Tipos de Documentos (chamados Doctypes) , definindo direitos como Ler, Escrever, Criar, Deletar, Enviar, Cancelar, Corrigir, Reportar, Importar, Exportar, Imprimir, Email e Definir Permissões de Usuário.", -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.,As permissões de níveis superiores são permissões de Nível de Campo. Todos os Campos têm um conjunto de Nível de Permissão e as regras definidas nessas permissões aplicam-se ao campo. Isto é útil caso queira ocultar ou fazer com que determinado campo seja só de leitura para certas Funções., -"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","As permissões para o nível 0 são permissões em nível de documento, ou seja, eles são primários para o acesso ao documento.", -Permissions get applied on Users based on what Roles they are assigned.,As permissões são aplicadas em usuários com base nas funções que lhe são atribuídas., -Personal,Pessoal, -Personal Data Deletion Request,Solicitação de Exclusão de Dados Pessoais, -Personal Data Download Request,Solicitação de download de dados pessoais, -Phone No.,Nº de Telefone., -Pick Columns,Escolher Colunas, -Plant,Fábrica, -Please Duplicate this Website Theme to customize.,Por favor Duplicar este site Tema para personalizar., -Please Enter Your Password to Continue,"Por favor, digite sua senha para continuar", -Please Install the ldap3 library via pip to use ldap functionality.,"Por favor, instale a biblioteca ldap3 via pip para usar a funcionalidade ldap.", -Please Update SMS Settings,Atualize Configurações SMS, -Please add a subject to your email,"Por favor, adicione um assunto ao seu email", -Please ask your administrator to verify your sign-up,"Por favor, pergunte ao seu administrador para verificar a sua inscrição", -Please attach a file first.,"Por favor, anexar um arquivo primeiro", -Please attach an image file to set HTML,"Por favor, anexe um arquivo de imagem para definir HTML", -Please check your email for verification,"Por favor, verifique seu e-mail para verificação", -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.,"Verifique seu endereço de e-mail registrado para obter instruções sobre como proceder. Não feche esta janela, pois você terá que retornar a ela.", -Please close this window,"Por favor, feche esta janela", -Please confirm your action to {0} this document.,"Por favor, confirme sua ação para {0} este documento.", -Please do not change the rows above {0},"Por favor, não alterar as linhas acima {0}", -Please do not change the template headings.,"Por favor, não alterar as posições do modelo.", -Please duplicate this to make changes,"Por favor, duplicar este para fazer mudanças", -Please enable developer mode to create new connection,Ative o modo de desenvolvedor para criar uma nova conexão, -Please ensure that your profile has an email address,Verifique se o seu perfil tem um endereço de email, -Please enter Access Token URL,Digite o URL do token de acesso, -Please enter Authorize URL,Digite Autorizar URL, -Please enter Base URL,Digite o URL da Base, -Please enter Client ID before social login is enabled,Digite o ID do cliente antes que o login social seja ativado, -Please enter Client Secret before social login is enabled,Digite Client Secret antes do login social estar habilitado, -Please enter Redirect URL,Digite o URL de redirecionamento, -Please enter the password,Por favor digite a senha, -Please enter valid mobile nos,"Por favor, indique números de celular válidos", -Please enter values for App Access Key and App Secret Key,Por favor insira os valores para acesso App Key e App chave secreta, -Please make sure that there are no empty columns in the file.,"Por favor, certifique-se de que não existem colunas vazias no arquivo.", -Please make sure the Reference Communication Docs are not circularly linked.,Certifique-se de que os Documentos de Comunicação de Referência não estejam vinculados circularmente., -Please refresh to get the latest document.,Por favor de atualização para obter os últimos documentos., -Please save before attaching.,"Por favor, salve antes de anexar.", -Please save the Newsletter before sending,"Por favor, salve a Newsletter antes de enviar", -Please save the document before assignment,"Por favor, salve o documento antes da atribuição", -Please save the document before removing assignment,"Por favor, salve o documento antes de remover a atribuição", -Please save the report first,"Por favor, salve o primeiro relatório", -Please select DocType first,"Por favor, selecione DocType primeiro", -Please select Entity Type first,"Por favor, selecione Tipo de Entidade primeiro", -Please select Minimum Password Score,Selecione Mínimo de Marcação de Senha, -Please select a Amount Field.,Por favor selecione um campo total., -Please select a file or url,"Por favor, selecione um arquivo ou url", -Please select a new name to rename,Selecione um novo nome para renomear, -Please select a valid csv file with data,"Por favor, selecione um arquivo csv com dados válidos", -Please select another payment method. PayPal does not support transactions in currency '{0}',Selecione outra forma de pagamento. O PayPal não suporta transações em moeda '{0}', -Please select another payment method. Razorpay does not support transactions in currency '{0}',Selecione outra forma de pagamento. não Razorpay não suporta transações em moeda '{0}', -Please select atleast 1 column from {0} to sort/group,"Por favor, selecione pelo menos coluna 1 a partir de {0} para classificar / grupo", -Please select document type first.,"Por favor, selecione o tipo de documento primeiro.", -Please select the Document Type.,Selecione o Tipo de documento., -Please set Base URL in Social Login Key for Frappe,Defina o URL básico na chave de login social para Frappe, -Please set Dropbox access keys in your site config,Defina teclas de acesso Dropbox em sua configuração local, -Please set a printer mapping for this print format in the Printer Settings,"Por favor, defina um mapeamento de impressora para este formato de impressão nas configurações da impressora.", -Please set filters,"Por favor, defina filtros", -Please set filters value in Report Filter table.,"Por favor, definir o valor de filtros na tabela Filtro de Relatório.", -"Please setup SMS before setting it as an authentication method, via SMS Settings","Configure o SMS antes de configurá-lo como um método de autenticação, por meio de Configurações de SMS", -Please setup a message first,"Por favor, configure uma mensagem primeiro", -Please specify which date field must be checked,Por favor especificar qual campo de data deve ser verificado, -Please specify which value field must be checked,Por favor especificar qual campo deve ser verificado, -Please try again,"Por favor, tente novamente", -Please verify your Email Address,"Por favor, verifique seu endereço de email", -Point Allocation Periodicity,Periodicidade de alocação de pontos, -Points,Pontos, -Points Given,Pontos dados, -Port,Porta, -Portal Menu,Portal menu, -Portal Menu Item,Portal item de menu, -Post,Post, -Post Comment,Publicar comentário, -Postal,Postal, -Postal Code,CEP, -Postprocess Method,Método de pós-processamento, -Posts,Postagens, -Posts by {0},Posts de {0}, -Posts filed under {0},Posts arquivados em {0}, -Precision,Precisão, -Precision should be between 1 and 6,Precisão deve estar entre 1 e 6, -Predictable substitutions like '@' instead of 'a' don't help very much.,"As substituições previsíveis, como '@' em vez de 'a' não ajudam muito.", -Preferred Billing Address,Endereço preferido de faturamento, -Preferred Shipping Address,Endereço preferido para entrega, -Prepared Report,Relatório preparado, -Preparing Report,Preparando Relatório, -Preprocess Method,Método de pré-processamento, -Press Enter to save,Pressione Enter para salvar, -Preview HTML,Pré-visualização de HTML, -Preview Message,Visualizar mensagem, -Previous,Anterior, -Previous Hash,Hash anterior, -Primary Color,Cor primária, -Print Documents,Imprimir documentos, -Print Format Builder,Criar/Editar Formato de Impressão, -Print Format Help,Ajuda sobre Formatos de Impressão, -Print Format Type,Tipo do Formato de Impressão, -Print Format {0} is disabled,Formato de Impressão {0} está desativado, -Print Hide,Ocultar Impressão, -Print Hide If No Value,Ocultar Impressão se não Preenchido, -Print Sent to the printer!,Imprimir Enviado para a impressora!, -Print Server,Servidor de impressão, -Print Style,Estilo de Impressão, -Print Style Name,Nome do estilo de impressão, -Print Style Preview,Estilo de visualização de impressão, -Print Width,Largura de impressão, -"Print Width of the field, if the field is a column in a table","Largura de impressão do campo, se o campo é uma coluna na tabela", -Print with letterhead,Imprimir com o timbre, -Printer,Impressora, -Printer Mapping,Mapeamento de Impressora, -Printer Name,Nome da impressora, -Printer Settings,Configurações da Impressora, -Printing failed,Impressão falhou, -Private Key,Chave privada, -Private and public Notes.,Privadas e públicas Notas., -ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Adicionar Reference: {{ reference_doctype }} {{ reference_name }} para enviar referência do documento, -Processing,Em processamento, -Processing...,Em processamento..., -Prof,Prof, -Progress,Progresso, -Property Setter,Configurador de Propriedades, -Property Setter overrides a standard DocType or Field property,O configurador de propriedades substitui o DocType padrão ou propriedade de campo, -Property Type,Tipo de propriedade, -Provider,Fornecedor, -Provider Name,Nome do provedor, -Public Key,Chave pública, -Publishable Key,Chave publicável, -Published On,Publicado no, -Pull,Puxar, -Pull Failed,Puxar falhou, -Pull Insert,Inserir puxar, -Pull Update,Puxe a Atualização, -Push,Empurrar, -Push Delete,Pressione Excluir, -Push Failed,Push Failed, -Push Insert,Push Insert, -Push Update,Atualização de envio, -Python Module,Módulo Python, -Pyver,Pyver, -QR Code,QR Code, -QR Code for Login Verification,Código QR para verificação de login, -QZ Tray Connection Active!,Conexão da Bandeja QZ Ativo!, -QZ Tray Failed: ,QZ Tray Failed:, -Quarter Day,1/4 do Dia, -Query,Consulta, -Query Report,Relatório da Consulta, -Query must be a SELECT,Consulta deve ser um SELECT, -Queue should be one of {0},A fila deve ser uma de {0}, -Queued for backup. It may take a few minutes to an hour.,Na fila para backup em até uma hora., -Queued for backup. You will receive an email with the download link,Em fila para backup. Você receberá um e-mail com o link de download, -Quick Help for Setting Permissions,Ajuda rápida para Configurar Permissões, -Rating: ,Rating:, -Raw Commands,Comandos brutos, -Raw Email,Email Puro, -Raw Printing,Impressão Raw, -Razorpay Payment gateway settings,configurações de gateway de pagamento Razorpay, -Razorpay Settings,Configurações Razorpay, -Re: ,Re: , -Re: {0},Re: {0}, -Read,Ler, -Read Only,Somente Leitura, -Read by Recipient,Lido por destinatário, -Read by Recipient On,Lido por destinatário ativado, -Rebuild,Reconstruir, -Receiver Parameter,Parâmetro do recebedor, -Recent years are easy to guess.,Os anos recentes são fáceis de adivinhar., -Recipient,Destinatário, -Recipient Unsubscribed,Destinatário com inscrição cancelada, -Record does not exist,Registro não existe, -Records for following doctypes will be filtered,Registros para seguir doctypes serão filtrados, -Redirect To,redirecionar para, -Redirect URI Bound To Auth Code,URI de redirecionamento Bound To Código Auth, -Redirect URIs,redirecionar URIs, -Redis cache server not running. Please contact Administrator / Tech support,Servidor de cache Redis não está funcionando. Entre em contato com o Administrador de apoio / Tecnologia, -Ref DocType,DocType de Ref., -Ref Report DocType,Ref Report DocType, -Reference DocName,Nome do Documento de Referência, -Reference DocType and Reference Name are required,Referência DocType e nome de referência são necessários, -Reference Report,Relatório de referência, -Reference: {0} {1},Referência: {0} {1}, -Refreshing...,Atualizando..., -Register OAuth Client App,Registrar App OAuth Cliente, -Registered but disabled,Registrado mas desativado, -Relapsed,Reincidente, -Relapses,Recaídas, -Relink,Religar, -Relink Communication,Religar Comunicação, -Relinked,Religado, -Reload,Recarregar, -Remember Last Selected Value,Lembrar última seleção, -Remote,Remoto, -Remote Fieldname,Remote Fieldname, -Remote ID,ID Remoto, -Remote Objectname,Remote Objectname, -Remote Primary Key,Chave primária remota, -Remove,Remover, -Remove Field,Remover Campo, -Remove Filter,Remover Filtro, -Remove Section,Remover Seção, -Remove Tag,Remova Tag, -Remove all customizations?,Remover todas as personalizações?, -Removed {0},Removido {0}, -Rename many items by uploading a .csv file.,Renomeie muitos itens fazendo o upload de um arquivo csv., -Rename {0},Mudar o nome {0}, -Repeat Header and Footer in PDF,Repetir cabeçalho e rodapé no PDF, -Repeat On,Repetir em, -Repeat Till,Repita até que, -Repeat on Day,Repetir no dia, -Repeat this Event,Repita este evento, -Repeats like "aaa" are easy to guess,Repetições como "aaa" são fáceis de adivinhar, -Repeats like "abcabcabc" are only slightly harder to guess than "abc",Repetições como "abcabcabc" são somente um pouco mais difícil de adivinhar que "abc", -Reply,Responder, -Reply All,Responder a todos, -Report End Time,Hora de término do relatório, -Report Filters,Filtros de relatório, -Report Hide,Ocultar Relatório, -Report Manager,Gestor de Relatórios, -Report Name,Nome do Relatório, -Report Start Time,Hora de início do relatório, -Report cannot be set for Single types,Relatório não pode ser ajustada para os modelos únicos, -Report of all document shares,Relatório de todas as ações de documentos, -Report updated successfully,Relatório atualizado com sucesso, -Report was not saved (there were errors),O Relatório não foi salvo (houve erros), -Report {0},Relatório {0}, -Report {0} is disabled,Relatório {0} está desativado, -Report:,Relatório:, -Represents a User in the system.,Representa um usuário no sistema., -Represents the states allowed in one document and role assigned to change the state.,Representa os estados permitidos em um documento e função atribuído para alterar o estado., -Request Timed Out,Solicitação expirada, -Request URL,URL do pedido, -Require Trusted Certificate,Exigir certificado confiável, -Res: {0},Res: {0}, -Reset OTP Secret,Redefinir OTP Secret, -Reset Password,Redefinir Senha, -Reset Password Key,Redefinição de senha chave, -Reset Permissions for {0}?,Repor permissões para {0} ?, -Reset to defaults,Restaurar Padrões, -Reset your password,Redefinir sua senha, -Response Type,Tipo de resposta, -Restore,Restaurar, -Restore Original Permissions,Restaurar permissões originais, -Restore or permanently delete a document.,Restaure ou exclua permanentemente um documento., -Restore to default settings?,Restaurar as configurações padrão?, -Restored,Restaurado, -Restrict IP,Restringir IP, -Restrict To Domain,Restringir ao domínio, -Restrict user for specific document,Restringir usuário para documento específico, -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),Restringir usuário a partir deste endereço IP. Vários endereços IP podem ser adicionados ao separar com vírgulas. São aceitos também endereços IP parciais como (111.111.111), -Resume Sending,Retomar Envio, -Retake,Retomar, -Retry,Repetir, -Return to the Verification screen and enter the code displayed by your authentication app,Retorne à tela de Verificação e insira o código exibido pelo seu aplicativo de autenticação, -Reverse Icon Color,Inverta Ícone Cor, -Revert,Reverter, -Revert Of,Reverter, -Reverted,Revertido, -Review Level,Nível de revisão, -Review Levels,Revisar Níveis, -Review Points,Pontos de revisão, -Reviews,Rever, -Revoke,Revogar, -Revoked,Revogado, -Rich Text,Rich Text, -Robots.txt,Robots.txt, -Role Name,Nome da Função, -Role Permission for Page and Report,Permissão de Função para Página e Relatório, -Role Permissions,Permissões da Função, -Role Profile,Perfil de Função, -Role and Level,Função e Nível, -Roles,Funções, -Roles Assigned,Funções Atribuídas, -Roles can be set for users from their User page.,As funções podem ser definidas para os usuários através de sua página de Usuário., -Root {0} cannot be deleted,Root {0} não pode ser excluído, -Round Robin,Robin Redondo, -Route History,História da rota, -Route Redirects,Redirecionamentos de rota, -Route to Success Link,Rota para o Link de Sucesso, -Row,Linha, -Row #{0}:,Linha # {0}:, -Row Index,Índice de linhas, -Row No,Linha No, -Row Status,Status da fila, -Row Values Changed,Valores das Linhas Mudaram, -Row {0}: Not allowed to disable Mandatory for standard fields,Linha {0}: Não é permitido desativar Obrigatório para campos padrão, -Row {0}: Not allowed to enable Allow on Submit for standard fields,Linha {0}: Não é permitido habilitar Permitir ao Enviar para campos padrão, -Rows Added,Linhas Adicionadas, -Rows Removed,Linhas Excluídas, -Rule,Regra, -Rule Name,Nome da regra, -Rules defining transition of state in the workflow.,Regras que definem a transição de status no fluxo de trabalho., -"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Regras de como os status são alterados, como o próximo status e que função terá permissão para mudar de status, etc", -Run,Corre, -Run scheduled jobs only if checked,As tarefas agendadas somente serão executadas se a opção estiver marcada, -S3 Backup Settings,Configurações de Backup S3, -S3 Backup complete!,S3 Backup completo!, -SMS,SMS, -SMS Gateway URL,URL de Gateway para SMS, -SMS Parameter,Parâmetro de SMS, -SMS Settings,Configurações de SMS, -SMS sent to following numbers: {0},SMS enviado a seguintes números: {0}, -SMTP Server,Servidor SMTP, -SMTP Settings for outgoing emails,Configurações de SMTP para envio de emails, -SQL Conditions. Example: status="Open",Condições SQL. Exemplo: status="Open", -SSL/TLS Mode,Modo SSL / TLS, -Salesforce,Salesforce, -Same Field is entered more than once,O mesmo campo foi inserido mais de uma vez, -Save API Secret: ,Salvar Segredo da API:, -Save As,Salvar como, -Save Filter,Salvar filtro, -Save Report,Salvar o relatorio, -Save filters,Salvar filtros, -Saving,Salvando, -Saving...,Salvando ..., -Scan the QR Code and enter the resulting code displayed.,Digitalize o Código QR e insira o código resultante exibido., -Scopes,Scopes, -Script,Script, -Script Report,Relatório Script, -Script or Query reports,Script ou consulta relatórios, -Script to attach to all web pages.,Script para anexar a todas as páginas web., -Search Fields,Campos de Pesquisa, -Search Help,Procure Ajuda, -Search field {0} is not valid,Campo de pesquisa {0} não é válido, -Search for '{0}',Pesquisar por '{0}', -Search for anything,Procurar por qualquer coisa, -Search in a document type,Pesquisar em um tipo de documento, -Search or Create a New Chat,Pesquisar ou criar um novo bate-papo, -Search or type a command,Pesquisar ou digite um comando, -Search...,Pesquisa..., -Searching,Procurando, -Searching ...,Procurando ..., -Section Break,Quebra de seção, -Section Heading,Cabeçalho da Seção, -Security,Segurança, -Security Settings,Configurações de Segurança, -See all past reports.,Veja todos os relatórios anteriores., -See on Website,Veja no Site, -See the document at {0},Veja o documento em {0}, -Seems API Key or API Secret is wrong !!!,Parece que a chave API ou o segredo da API estão errados !!!, -Seems Publishable Key or Secret Key is wrong !!!,Parece publicado chave ou secret key está errado !!!, -"Seems issue with server's razorpay config. Don't worry, in case of failure amount will get refunded to your account.","Parece um problema com a configuração do servidor razorpay. Não se preocupe, em caso de falha os valores serão estornados à sua conta.", -Seems token you are using is invalid!,Parece token que você está usando é inválido!, -Seen,Visto, -Seen By,Visto por, -Seen By Table,Visto por tabela, -Select Attachments,Selecione os Anexos, -Select Child Table,Selecionar tabela infantil, -Select Column,Selecione a coluna, -Select Columns,Selecionar Colunas, -Select Document Type,Selecione o Tipo de Documento, -Select Document Type or Role to start.,Selecione o Tipo de Documento ou Função para começar., -Select Document Types to set which User Permissions are used to limit access.,Selecione os tipos de documentos para definir quais as permissões de usuário são usados para limitar o acesso., -Select File Format,Selecione o formato do arquivo, -Select File Type,Selecionar tipo do arquivo, -Select Language...,Selecione o idioma..., -Select Languages,Selecionar Idiomas, -Select Module,Selecione o Módulo, -Select Print Format,Selecione o Formato de Impressão, -Select Print Format to Edit,Selecione um formato de impressão para editar, -Select Role,Selecione a Função, -Select Table Columns for {0},Selecionar colunas de tabela para {0}, -Select Your Region,Selecione sua região, -Select a Brand Image first.,Selecione o Logo da Marca primeiro., -Select a DocType to make a new format,Selecione um tipo de documento para fazer um novo formato, -Select a chat to start messaging.,Selecione um bate-papo para iniciar mensagens., -Select a group node first.,Selecione um nó de grupo primeiro., -Select an existing format to edit or start a new format.,Escolha um formato existente para editar ou iniciar um novo formato., -Select an image of approx width 150px with a transparent background for best results.,Selecione uma imagem de aproximadamente 150px de largura com um fundo transparente para melhores resultados., -Select atleast 1 record for printing,Selecione pelo menos 1 registro para impressão, -Select or drag across time slots to create a new event.,Selecione ou arraste intervalos de tempo para criar um novo evento., -Select records for assignment,Seleciona registros para a atribuição, -Select the label after which you want to insert new field.,Selecione a etiqueta após a qual você deseja inserir um novo campo., -"Select your Country, Time Zone and Currency","Escolha o seu País, Fuso Horário e Moeda", -Select {0},Selecione {0}, -Self approval is not allowed,Auto-aprovação não é permitida, -Send After,Envie Depois, -Send Alert On,Enviar Alerta, -Send Email Alert,Enviar alerta de email, -Send Email Print Attachments as PDF (Recommended),Enviar anexos de email em PDF (Recomendado), -Send Email for Successful Backup,Enviar email para backup bem-sucedido, -Send Me A Copy of Outgoing Emails,Envie-me uma cópia dos e-mails de saída, -Send Notification to,Enviar Notificação para, -Send Notifications To,Enviar Notificações para, -Send Print as PDF,Enviar impressão como PDF, -Send Read Receipt,Enviar Confirmação de Leitura, -Send Unsubscribe Link,Enviar link para cancelar inscrição, -Send Welcome Email,Enviar email de boas-vindas, -Send alert if date matches this field's value,Enviar alerta se a data corresponde valor deste campo, -Send alert if this field's value changes,Enviar alerta se muda o valor desse campo, -Send an email reminder in the morning,Enviar um email lembrete na parte da manhã, -Send days before or after the reference date,Enviar dias antes ou depois da data de referência, -Send enquiries to this email address,Envie perguntas para este endereço de email, -Send me a copy,Envie-me uma Cópia, -Send only if there is any data,Envie somente se houver quaisquer dados, -Send unsubscribe message in email,Enviar mensagem de cancelamento de inscrição no e-mail, -Sender,Remetente, -Sender Email,E-mail do remetente, -Sendgrid,Sendgrid, -Sent Read Receipt,Enviar Confirmação de Leitura, -Sent or Received,Enviados ou recebidos, -Sent/Received Email,E-mail enviado / recebido, -Server IP,IP do servidor, -Session Expired,Sessão expirada, -Session Expiry,Duração da Sessão, -Session Expiry Mobile,Duração da Sessão Móvel, -Session Expiry in Hours e.g. 06:00,"Duração da sessão em horas, por exemplo 06:00", -Session Expiry must be in format {0},Sessão de validade devem estar no formato {0}, -Session Start Failed,Falha ao iniciar a sessão, -Set Banner from Image,Definir imagem como banner, -Set Chart,Definir gráfico, -Set Filters,Definir filtros, -Set New Password,Definir nova senha, -Set Number of Backups,Definir número de cópias de segurança, -Set Only Once,Definir apenas uma vez, -Set Password,Definir senha, -Set Permissions,Definir Permissões, -Set Permissions on Document Types and Roles,Definir permissões em Tipos e Funções de documentos, -Set Property After Alert,Definir propriedade após o alerta, -Set Quantity,Definir Quantidade, -Set Role For,Definir papel para, -Set User Permissions,Definir Permissões de Usuário, -Set Value,Definir valor, -Set custom roles for page and report,Definir funções personalizadas para página e relatório, -"Set default format, page size, print style etc.","Definir o formato padrão, o tamanho da página, estilo de impressão, etc", -Set non-standard precision for a Float or Currency field,Definir precisão não-padrão para um campo Float ou Moeda, -Set numbering series for transactions.,Definir numeração série para transações., -Set up rules for user assignments.,Configurar regras para atribuições de usuários., -Setting this Address Template as default as there is no other default,"A definição desse modelo de endereço como padrão, pois não há outro padrão", -Setting up your system,Configurando seu sistema, -Settings for About Us Page.,Configurações para a Página Sobre Nós., -Settings for Contact Us Page,Configurações para a página Fale Conosco, -Settings for Contact Us Page.,Configurações da Página Fale Conosco., -Settings for OAuth Provider,Definições para Provedor de OAuth, -Settings for the About Us Page,Configurações para a página Sobre Nós, -Setup Auto Email,Configurar Email Automático, -Setup Complete,Instalação Concluída, -Setup Notifications based on various criteria.,Notificações de configuração com base em vários critérios., -Setup Reports to be emailed at regular intervals,Relatórios de configuração para ser enviado em intervalos regulares, -"Setup of top navigation bar, footer and logo.","Configuração de barra de navegação do topo, rodapé, e logotipo.", -Share,Compartilhar, -Share URL,URL de compartilhamento, -Share With,Compartilhar, -Share this document with,Compartilhe este documento com, -Share {0} with,Partilhar {0} com, -Shared,Compartilhado, -Shared With,Compartilhado com, -Shared with everyone,Compartilhado com todos, -Shared with {0},Compartilhado com {0}, -Shop,Loja, -Short keyboard patterns are easy to guess,padrões do teclado curtas são fáceis de adivinhar, -Show Attachments,Mostrar anexos, -Show Calendar,Mostrar calendário, -Show Dashboard,Mostrar Dashboard, -Show Full Error and Allow Reporting of Issues to the Developer,Mostrar erro completo e permitir relatórios de problemas para o desenvolvedor, -Show Line Breaks after Sections,Mostrar quebras de linha após seções, -Show Permissions,Mostrar Permissões, -Show Preview Popup,Mostrar pop-up de pré-visualização, -Show Relapses,Mostrar Relapses, -Show Report,Mostrar relatório, -Show Section Headings,Mostrar Seção Títulos, -Show Sidebar,Mostrar menu lateral, -Show Title,Mostrar Título, -Show Totals,Mostrar Totais, -Show Weekends,Mostrar fins de semana, -Show all Versions,Mostrar todas as versões, -Show as Grid,Mostrar como grade, -Show as cc,Mostrar como cc, -Show failed jobs,Mostrar tarefas com falha, -Show in Module Section,Mostrar na Seção Módulo, -Show in filter,Mostrar no filtro, -Show more details,Mostrar mais detalhes, -Show only errors,Mostrar apenas erros, -Show title in browser window as "Prefix - title",Mostrar título na janela do navegador como "Prefixo - título", -Showing only Numeric fields from Report,Mostrando apenas campos numéricos do relatório, -Sidebar Items,Itens da barra lateral, -Sidebar Settings,Configurações da barra lateral, -Sidebar and Comments,Menu Lateral e Comentários, -Sign Up,Inscrever-se, -Sign Up is disabled,Sign Up é desativado, -Signature,Assinatura, -"Simple Python Expression, Example: Status in (""Closed"", ""Cancelled"")","Expressão Python Simples, Exemplo: Status em ("Fechado", "Cancelado")", -"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expressão Python Simples, Exemplo: status == 'Open' e digite == 'Bug'", -Simultaneous Sessions,Sessões simultâneas, -Single DocTypes cannot be customized.,DocTypes únicos não podem ser personalizados., -Single Post (article).,Resposta Única (artigo)., -Single Types have only one record no tables associated. Values are stored in tabSingles,Tipos individuais têm apenas um registro sem tabelas associadas. Os valores são armazenados em tabSingles, -Skip Authorization,Ignorar autorização, -Skip rows with errors,Ignorar linhas com erros, -Skype,Skype, -Slack,Folga, -Slack Channel,Canal de folga, -Slack Webhook Error,Erro Slack Webhook, -Slack Webhook URL,URL do Webhook do Slack, -Slack Webhooks for internal integration,Webhooks frouxos para integração interna, -Slideshow Items,Itens da Apresentação de Slides, -Slideshow Name,Nome da Apresentação de Slides, -Slideshow like display for the website,Slideshow como display para o site, -Small Text,Texto Pequeno, -Smallest Currency Fraction Value,Menor valor fracionado de moeda, -Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Menor unidade fração circulante (moeda). Para, por exemplo, 1 centavo, deve ser inserido como 0,01", -Snapshot View,Ver Snapshot, -Social,Social, -Social Login Key,Chave de login social, -Social Login Provider,Provedor de acesso social, -Social Logins,Logins sociais, -Socketio is not connected. Cannot upload,Socketio não está conectado. Não é possível carregar, -Soft-Bounced,Soft-Bounced, -Some of the features might not work in your browser. Please update your browser to the latest version.,Alguns dos recursos podem não funcionar no seu navegador. Atualize o navegador para a versão mais recente., -Something went wrong,Algo deu errado, -Something went wrong while generating dropbox access token. Please check error log for more details.,Algo deu errado ao gerar o token de acesso dropbox. Verifique o registro de erros para obter mais detalhes., -Sorry! I could not find what you were looking for.,Desculpe! Não foi possível encontrar o que você procurou., -Sorry! Sharing with Website User is prohibited.,Desculpe! Não é permitido compartilhar com o site do usuário., -Sorry! User should have complete access to their own record.,Desculpe! O usuário deve ter acesso completo ao seu próprio registro., -Sorry! You are not permitted to view this page.,Desculpe! Você não tem permissão para visualizar esta página., -"Sorry, you're not authorized.","Desculpe, você não está autorizado.", -Sort Field,Ordenar por campo, -Sort Order,Ordem de classificação, -Sort field {0} must be a valid fieldname,Ordenar campo {0} deve ser um nome do campo válido, -Source Text,Texto Original, -Spam,Spam, -SparkPost,SparkPost, -Special Characters are not allowed,Caracteres especiais não são permitidos, -"Standard DocType cannot have default print format, use Customize Form","DocType padrão não pode ter o formato de impressão padrão, use Personalizar formulário", -Standard Print Format cannot be updated,Formato de impressão padrão não pode ser atualizado, -Standard Print Style cannot be changed. Please duplicate to edit.,"O estilo de impressão padrão não pode ser alterado. Por favor, copie para editar.", -Standard Reports,Relatórios padrão, -Standard Sidebar Menu,Menu Lateral Padrão, -Standard roles cannot be disabled,Funções padrão não pode ser desativado, -Standard roles cannot be renamed,Funções padrão não podem ser renomeadas, -Standings,Classificações, -Start Date Field,Campo de Data de Início, -Start a conversation.,Comece uma conversa., -Start entering data below this line,Comece a introduzir dados abaixo desta linha, -Start new Format,Iniciar um Novo Formato, -StartTLS,StartTLS, -Started,Começado, -Starting Frappe ...,Iniciando Frappé ..., -Starts on,Inicia em, -States,Estados, -"States for workflow (e.g. Draft, Approved, Cancelled).","Status para o fluxo de trabalho (por exemplo, rascunho, aprovado, cancelado).", -Static Parameters,Parâmetros estáticos, -Stats based on last month's performance (from {0} to {1}),Estatísticas com base no desempenho do último mês (de {0} a {1}), -Stats based on last week's performance (from {0} to {1}),Estatísticas com base no desempenho da semana passada (de {0} a {1}), -Status: {0},Status: {0}, -Steps to verify your login,Etapas para verificar seu login, -Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Armazena o JSON das últimas versões conhecidas de vários aplicativos instalados. Ele é usado para mostrar notas de lançamento., -Straight rows of keys are easy to guess,linhas retas de teclas são fáceis de adivinhar, -Stripe Settings,Configurações do Stripe, -Stripe payment gateway settings,Configurações do gateway de pagamento Stripe, -Style,Estilo, -Style Settings,Configurações de Estilo, -"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estilo representa a cor do botão: Sucesso - Verde, Perigo - Vermelho, Inverso - Preto, Primário - Azul Escuro, Informações - Azul Claro, Aviso - Laranja", -Stylesheets for Print Formats,Folhas de estilos para formatos de impressão, -Sub-currency. For e.g. "Cent",Sub-moeda. Por exemplo "Centavo", -Sub-domain provided by erpnext.com,Sub-domínio fornecido pelo erpnext.com, -Subdomain,Subdomínio, -Subject Field,Subject Field, -Submit after importing,Enviar depois de importar, -Submit an Issue,Enviar um problema, -Submit this document to confirm,Enviar este documento para confirmar, -Submit {0} documents?,Envie {0} documentos?, -Submitting {0},Enviando {0}, -Submitted Document cannot be converted back to draft. Transition row {0},Documento enviado não pode ser convertido de volta para rascunho. Linha de transição {0}, -Submitting,Enviando, -Subscription Notification,Notificação de Subscrição, -Subsidiary,Subsidiário, -Success Action,Ação de Sucesso, -Success Message,Mensagem de sucesso, -Success URL,URL de Confirmação, -Successful: {0} to {1},Bem-sucedida: {0} para {1}, -Successfully Done,Feito com sucesso, -Successfully Updated,Atualizado com sucesso, -Successfully updated translations,Traduções atualizadas com êxito, -Suggested Username: {0},Nome de usuário sugerido: {0}, -Sum,Soma, -Sum of {0},Soma de {0}, -Support Email Address Not Specified,Endereço de e-mail de suporte Não especificado, -Suspend Sending,Suspender Envio, -Switch To Desk,Ir para o Desktop, -Symbol,Símbolo, -Sync,Sincronizar, -Sync on Migrate,Sync em Migrate, -Syntax error in template,Erro de sintaxe no template, -System,Sistema, -System Page,Página do sistema, -System Settings,Configurações do Sistema, -System User,Usuário do Sistema, -System and Website Users,Usuários do sistema e do site, -Table,Tabela, -Table Field,Campo da Tabela, -Table HTML,Tabela HTML, -Table MultiSelect,Tabela MultiSelect, -Table updated,Tabela atualizada, -Table {0} cannot be empty,Tabela {0} não pode ser vazio, -Take Backup Now,Fazer backup agora, -Take Photo,Tirar fotos, -Team Members,Membros da Equipe, -Team Members Heading,Título da página Membros da Equipe, -Temporarily Disabled,Temporariamente desativado, -Test Email Address,Teste de Endereço de Email, -Test Runner,Test Runner, -Test_Folder,Test_Folder, -Text,Texto, -Text Align,Alinhar Texto, -Text Color,Cor do texto, -Text Content,conteúdo de texto, -Text Editor,Editor de Texto, -Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"O texto a ser exibido para o link da página da web, se este formulário tem uma página web. Um link será gerado automaticamente com base em ` page_name` e `parent_website_route`", -Thank you for your email,Obrigado pelo seu email, -Thank you for your interest in subscribing to our updates,Agradecemos seu interesse em assinar a newsletter do site, -Thank you for your message,Obrigado por sua mensagem, -The CSV format is case sensitive,O formato CSV diferencia maiúsculas de minúsculas, -The Condition '{0}' is invalid,A condição '{0}' é inválido, -The First User: You,O primeiro usuário: Você, -"The application has been updated to a new version, please refresh this page","O aplicativo foi atualizado para uma nova versão, por favor, atualize esta página", -The attachments could not be correctly linked to the new document,Os anexos não puderam ser vinculados corretamente ao novo documento, -The document could not be correctly assigned,O documento não pôde ser atribuído corretamente, -The document has been assigned to {0},O documento foi atribuído a {0}, -The first user will become the System Manager (you can change this later).,O primeiro usuário será o System Manager (você pode mudar isso mais tarde)., -The name that will appear in Google Calendar,O nome que aparecerá no Google Agenda, -The process for deletion of {0} data associated with {1} has been initiated.,O processo de exclusão de {0} dados associados a {1} foi iniciado., -The resource you are looking for is not available,O recurso que você está procurando não está disponível, -The system provides many pre-defined roles. You can add new roles to set finer permissions.,O sistema disponibiliza várias funções pré-definidas. Você pode adicionar novas funções para definir permissões mais específicas., -The user from this field will be rewarded points,O usuário deste campo será recompensado pontos, -Theme,Tema, -Theme URL,URL do tema, -There can be only one Fold in a form,Só pode haver uma Fold de uma forma, -There is an error in your Address Template {0},Há um erro no seu modelo de endereço {0}, -There is no data to be exported,Não há dados a serem exportados, -There is some problem with the file url: {0},Há algum problema com a url do arquivo: {0}, -There must be atleast one permission rule.,É necessário que exista pelo menos uma regra de permissão., -"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Parece haver um problema com a configuração braintree do servidor. Não se preocupe, em caso de falha, o valor será reembolsado para sua conta.", -There should remain at least one System Manager,Não deve permanecer pelo menos um gestor de sistema, -There was an error saving filters,Houve um erro ao salvar os filtros, -There were errors,Ocorreram erros, -There were errors while creating the document. Please try again.,"Houve erros ao criar o documento. Por favor, tente novamente.", -There were errors while sending email. Please try again.,"Ocorreram erros durante o envio de email. Por favor, tente novamente.", -"There were some errors setting the name, please contact the administrator","Houve alguns erros de definir o nome, por favor, entre em contato com o administrador", -These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Esses valores serão atualizados automaticamente em transações e também serão úteis para restringir as permissões para este usuário em operações que contenham esses valores., -Third Party Apps,Aplicativos de terceiros, -Third Party Authentication,Autenticação de Terceiros, -This Currency is disabled. Enable to use in transactions,Esta moeda é desativado. Ativar para usar em transações, -This Kanban Board will be private,Este Conselho Kanban será privado, -This document cannot be reverted,Este documento não pode ser revertido, -This document has been modified after the email was sent.,Este documento foi modificado depois que o email foi enviado., -This document has been reverted,Este documento foi revertido, -This document is currently queued for execution. Please try again,"Este documento está em fila para execução. Por favor, tente novamente", -This email is autogenerated,Este e-mail é gerado automaticamente, -This email was sent to {0},Este email foi enviado para {0}, -This email was sent to {0} and copied to {1},Este email foi enviado para {0} e copiados para {1}, -This feature is brand new and still experimental,Esta funcionalidade é nova e ainda está em fase experimental, -This field will appear only if the fieldname defined here has value OR the rules are true (examples): \nmyfield\neval:doc.myfield=='My Value'\neval:doc.age>18,Este campo aparecerá apenas se o nome do campo definido aqui tem valor ou as regras são verdadeiros (exemplos): myfield eval: doc.myfield == 'Meu Valor' eval: doc.age> 18, -This form does not have any input,Este formulário não tem nenhum campo a ser preenchido, -This form has been modified after you have loaded it,Este formulário foi modificado depois de ter carregado ele, -This format is used if country specific format is not found,Este formato é usado se o formato específico país não é encontrado, -This goes above the slideshow.,Isto vai acima do slideshow., -This is a background report. Please set the appropriate filters and then generate a new one.,"Este é um relatório de fundo. Por favor, defina os filtros apropriados e, em seguida, gere um novo.", -This is a top-10 common password.,Essa é uma das 10 senhas mais comuns., -This is a top-100 common password.,Essa é uma das 100 senhas mais comuns., -This is a very common password.,Essa é uma senha muito comum., -This is an automatically generated reply,Isto é uma resposta gerada automaticamente, -This is similar to a commonly used password.,Isso é parecido com uma senha comum., -This is the template file generated with only the rows having some error. You should use this file for correction and import.,Este é o arquivo de modelo gerado com apenas as linhas com algum erro. Você deve usar esse arquivo para corrigir e importar., -This link has already been activated for verification.,Este link já foi ativado para verificação., -This link is invalid or expired. Please make sure you have pasted correctly.,"Este link é inválido ou expirou. Por favor, certifique-se de ter colado corretamente.", -This may get printed on multiple pages,Isso pode ser impresso em várias páginas, -This month,Este mês, -This query style is discontinued,Esse estilo de consulta foi interrompido, -This report was generated on {0},Este relatório foi gerado em {0}, -This report was generated {0}.,Este relatório foi gerado {0}., -This request has not yet been approved by the user.,Esta solicitação ainda não foi aprovada pelo usuário., -This role update User Permissions for a user,Este papel arualiza Permissões do Usuário para um usuário, -This will log out {0} from all other devices,Isso encerrará {0} de todos os outros dispositivos, -This will permanently remove your data.,Isso removerá permanentemente seus dados., -Throttled,Throttled, -Thumbnail URL,URL Thumbnail, -Time Interval,Intervalo de tempo, -Time Series,Séries Temporais, -Time Series Based On,Séries Temporais Baseadas em, -Time Zone,Fuso horário, -Time Zones,Fusos horários, -Time in seconds to retain QR code image on server. Min:240,Tempo em segundos para manter a imagem do código QR no servidor. Min: 240, -Timeline DocType,DocType Timeline, -Timeline Field,Campo Timeline, -Timeline Links,Links da linha do tempo, -Timeline Name,Nome Timeline, -Timeline field must be a Link or Dynamic Link,Campo Timeline deve ser um link ou link dinâmico, -Timeline field must be a valid fieldname,campo Timeline deve ser um nome de campo válido, -Timeseries,Timeseries, -Timestamp,Timestamp, -Title Case,Caixa do Título, -Title Field,Campo Título, -Title Prefix,Prefixo do Título, -Title field must be a valid fieldname,Campo Título deve ser um nome de campo válido, -To Date Field,Até o momento do campo, -To Do,Atribuições, -To User,Ao usuário, -"To add dynamic subject, use jinja tags like\n\n
New {{ doc.doctype }} #{{ doc.name }}
","Para adicionar assunto dinâmico, use jinja tags como
 New {{ doc.doctype }} #{{ doc.name }} 
", -"To add dynamic subject, use jinja tags like\n\n
{{ doc.name }} Delivered
","Para adicionar assunto dinâmico, usar marcas como Jinja
 {{ doc.name }} Delivered 
", -To and CC,Para e CC, -"To get the updated report, click on {0}.","Para obter o relatório atualizado, clique em {0}.", -ToDo,Lista de Atribuições, -Today,Hoje, -Toggle Chart,Tabela de alternância, -Toggle Charts,Gráficos de alternância, -Toggle Grid View,Toggle Grid View, -Toggle Sidebar,Toggle Sidebar, -Token,Símbolo, -Token is missing,Token está ausente, -"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Demasiados usuários se inscreveram recentemente, de modo que o registro estiver desativado. Por favor volte em uma hora", -Too many writes in one request. Please send smaller requests,"Muitos escreve em um pedido. Por favor, enviar pedidos de menores", -Top Bar Item,Item da barra superior, -Top Bar Items,Itens da barra superior, -Top Performer,Top Performer, -Top Reviewer,Revisor Superior, -Top {0},Top {0}, -Total Pages,Páginas totais, -Total Rows,Linhas totais, -Total Subscribers,Total de Assinantes, -Total number of emails to sync in initial sync process ,número total de e-mails para sincronizar no processo de sincronização inicial, -Totals Row,Linha de totais, -Track Changes,Rastrear Alterações, -Track Email Status,Acompanhar status de e-mail, -Track Field,Trilha de corrida, -Track Seen,Marcar como visto, -Track Views,Acompanhar vistas, -"Track if your email has been opened by the recipient.\n
\nNote: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Acompanhe se o seu email foi aberto pelo destinatário.
Observação: se você estiver enviando para vários destinatários, mesmo que um destinatário leia o e-mail, ele será considerado "Aberto"", -Track milestones for any document,Acompanhe os marcos de qualquer documento, -Transaction Hash,Hash de transação, -Transaction Log,Log de transações, -Transaction Log Report,Relatório de log de transações, -Transition Rules,Regras de transição, -Transitions,Transições, -Translatable,Traduzível, -Translate {0},Traduzir {0}, -Translated Text,Texto Traduzido, -Translation,Tradução, -Translations,Traduções, -Trash,lixo, -Tree,Árvore, -Trigger Method,Método gatilho, -Trigger Name,Nome do Disparador, -"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Gatilho em métodos válidos como ""before_insert"", ""after_update"", etc. (dependerá do DocType selecionado)", -Try to avoid repeated words and characters,Tente evitar palavras repetidas e personagens, -Try to use a longer keyboard pattern with more turns,Tente usar um padrão de teclado mais tempo com mais voltas, -Two Factor Authentication,Autenticação de dois fatores, -Two Factor Authentication method,Método de autenticação de dois fatores, -Type something in the search box to search,Digite algo na caixa de pesquisa para pesquisar, -Type:,Tipo:, -UID,UID, -UIDNEXT,UIDNEXT, -UIDVALIDITY,UIDVALIDITY, -UNSEEN,Por Ler, -UPPER CASE,MAIÚSCULAS, -"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.www.login.login_via_facebook","URIs para receber o código de autorização uma vez que o usuário permite o acesso, bem como respostas de falha. Normalmente, um terminal REST expostas pelo cliente App.
por exemplo, http: //hostname//api/method/frappe.www.login.login_via_facebook", -URLs,URLs, -Unable to find attachment {0},Incapaz de encontrar o anexo {0}, -Unable to load camera.,Não é possível carregar a câmera., -Unable to load: {0},Não é possível carregar: {0}, -Unable to open attached file. Did you export it as CSV?,Foi impossível abrir o arquivo anexado. Você o exportou como CSV?, -Unable to read file format for {0},Não foi possível ler o formato do arquivo para {0}, -Unable to send emails at this time,Não é possível enviar emails neste momento, -Unable to update event,Não é possível atualizar evento, -Unable to write file format for {0},Não foi possível escrever o formato do arquivo para {0}, -Unassign Condition,Desatribuir condição, -Under Development,Em desenvolvimento, -Unfollow,Deixar de seguir, -Unhandled Email,Emails não trabalhados, -Unique,Único, -Unknown Column: {0},Coluna desconhecida: {0}, -Unknown User,Usuário desconhecido, -"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Codificação de arquivo desconhecida. Tentei utf-8, Windows -1250 , Windows-1252 .", -Unread,Não lida, -Unread Notification Sent,Notificação de mensagem não lida enviada, -Unselect All,Desmarcar Todos, -Unshared,Não Compartilhado, -Unsubscribe,Cancelar subscrição, -Unsubscribe Method,Método de Cancelamento de Inscrição, -Unsubscribe Param,Parâmetero de Cancelamento de Inscrição, -Unsupported File Format,Formato de arquivo não suportado, -Unzip,Descompactar, -Unzipped {0} files,Arquivos descompactados {0}, -Unzipping files...,Descompactando arquivos ..., -Upcoming Events for Today,Próximos Eventos para Hoje, -Update Field,Atualizar Campo, -Update Translations,Atualizar Traduções, -Update Value,Atualizar Valor, -Update many values at one time.,Atualizar muitas informações de uma só vez., -Update records,Atualizar registros, -Updated,Atualizado, -Updated successfully,Atualizado com sucesso, -Updated {0}: {1},Atualizado {0}: {1}, -Updating,Atualizando, -Updating {0},Atualizando {0}, -Upload Failed,Upload falhou, -Uploaded To Dropbox,Enviado para o Dropbox, -Use ASCII encoding for password,Use codificação ASCII para senha, -Use Different Email Login ID,Usar ID de Login de Email Diferente, -Use IMAP,Usar IMAP, -Use POST,Use POST, -Use SSL,Usar SSL, -Use TLS,Usar TLS, -"Use a few words, avoid common phrases.","Use algumas palavras, evite frases comuns.", -Use of sub-query or function is restricted,O uso de subconsulta ou função é restrito, -Use socketio to upload file,Use o socketio para fazer o upload do arquivo, -Use this fieldname to generate title,Utilize este campo para gerar o título, -User '{0}' already has the role '{1}',User '{0}' já tem o papel '{1}', -User Cannot Create,O Usuário não pode criar, -User Cannot Search,O Usuário não pode pesquisar, -User Defaults,Padrões de Perfil, -User Email,Email do Usuário, -User Emails,Emails do Usuário, -User Field,Campo do usuário, -User ID of a Blogger,ID do usuário de um Blogger, -User Image,Imagem do Usuário, -User Name,Nome de usuário, -User Permission,A permissão do usuário, -User Permissions,Permissões de Usuário, -User Permissions are used to limit users to specific records.,Permissões de usuário são usadas para limitar usuários a registros específicos., -User Permissions created sucessfully,Permissões de usuário criadas com sucesso, -User Roles,Funções do Usuário, -User Social Login,Login Social do Usuário, -User Tags,Etiquetas de Usuários, -User Type,Tipo de Usuário, -User can login using Email id or Mobile number,O usuário pode efetuar login usando a ID do e-mail ou o número do celular, -User can login using Email id or User Name,O usuário pode fazer login usando o ID de e-mail ou o Nome de usuário, -User editable form on Website.,Formato editável do usuário no site., -User is mandatory for Share,Usuário é obrigatória para Partilhar, -User not allowed to delete {0}: {1},Usuário não tem permissão para excluir {0}: {1}, -User permission already exists,A permissão do usuário já existe, -User permissions should not apply for this Link,As permissões de usuário não deve candidatar-se a este link, -User {0} cannot be deleted,O usuário {0} não pode ser excluído, -User {0} cannot be disabled,O usuário {0} não pode ser desativado, -User {0} cannot be renamed,O usuário {0} não pode ser renomeado, -User {0} does not have access to this document,O usuário {0} não tem acesso a este documento, -User {0} does not have doctype access via role permission for document {1},O usuário {0} não tem acesso ao tipo de documento via permissão de função para o documento {1}, -Username,Nome de Usuário, -Username {0} already exists,O nome de usuário {0} já existe, -Users with role {0}:,Os usuários com a função {0}:, -Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Usa o nome do endereço de e-mail mencionado nesta conta como o nome do remetente para todos os e-mails enviados usando esta conta., -Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Usa o endereço de e-mail mencionado nesta conta como o remetente para todos os e-mails enviados usando essa conta., -Valid,Válido, -Valid Login id required.,É necessário um usuário válido., -Valid email and name required,É necessário email válido e nome, -Value Based On,Valor Baseado em, -Value Change,Mudança de Valor, -Value Changed,Valor Alterado, -Value To Be Set,Valor a ser definido, -Value cannot be changed for {0},Valor não pode ser alterado para {0}, -Value for a check field can be either 0 or 1,Valor para um campo de verificação pode ser 0 ou 1, -Value for {0} cannot be a list,Valor para {0} não pode ser uma lista, -Value missing for,Valor em falta para, -Value too big,Valor muito grande, -Values Changed,Valores Alterados, -Verdana,Verdana, -Verfication Code,Código de Verificação, -Verification Link,Link de verificação, -Verification code has been sent to your registered email address.,O código de verificação foi enviado para o seu endereço de e-mail registrado., -Verify,Verificar, -Verify Password,Verifique a Senha, -Verifying...,Verificando..., -Version,Versão, -Version Updated,Atualização da versão, -View All,Ver tudo, -View Comment,Ver comentário, -View List,Ver Lista, -View Log,Visualizar log, -View Permitted Documents,Ver documentos permitidos, -View Properties (via Customize Form),Exibir Propriedades (via Personalizar Formulário), -View Settings,Ver Definições, -View Website,Ver Site, -View document,Ver documento, -View report in your browser,Exibir relatório no seu navegador, -View this in your browser,Veja isto no seu navegador, -View {0},Ver {0}, -Viewed By,Visto por, -Visit,Visita, -Visitor,Visitante, -We have received a request for deletion of {0} data associated with: {1},Recebemos uma solicitação para exclusão de {0} dados associados a: {1}, -We have received a request from you to download your {0} data associated with: {1},Recebemos uma solicitação sua para fazer o download de seus {0} dados associados a: {1}, -Web Form,Formulário Web, -Web Form Field,Campo de Formulário Web, -Web Form Fields,Campos de formulário Web, -Web Page,Página Web, -Web Page Link Text,Link de Texto para Página Web, -Web Site,Web Site, -Web View,web View, -Webhook,Webhook, -Webhook Data,Webhook Data, -Webhook Header,Cabeçalho Webhook, -Webhook Headers,Cabeçalhos Webhook, -Webhook Request,Pedido Webhook, -Webhook URL,URL do Webhook, -Webhooks calling API requests into web apps,Webhooks chamando pedidos de API em aplicativos da web, -Website Meta Tag,Meta Tag do Site, -Website Route Meta,Meta Rota do Site, -Website Route Redirect,Redirecionamento de Rota do Site, -Website Script,Script do Site, -Website Sidebar,Menu Lateral do Site, -Website Sidebar Item,Item do Menu Lateral do Site, -Website Slideshow,Slideshow do Site, -Website Slideshow Item,Item do Slideshow do Site, -Website Theme,Tema do Site, -Website Theme Image,Imagem do Tema do Site, -Website Theme Image Link,Link da Imagem do Tema do Site, -Website User,Usuário do Site, -Welcome Message,Mensagem de Boas-Vindas, -"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quando você Corrigir um documento depois de Cancelar e salvá-lo, ele irá obter um novo número que é uma versão do número antigo.", -Width,Largura, -Widths can be set in px or %.,Larguras podem ser definidas em px ou %., -Will be used in url (usually first name).,Será utilizado na url (geralmente o primeiro nome)., -Will be your login ID,Será seu ID de login, -Will only be shown if section headings are enabled,só será mostrado se títulos de seção estão habilitados, -With Letter head,Com cabeçalho, -With Letterhead,Com timbrado, -Workflow Action,Ação do Fluxo de Trabalho, -Workflow Action Master,Cadastro de Ação do Fluxo de Trabalho, -Workflow Action Name,Nome da Ação do Fluxo de Trabalho, -Workflow Document State,Status do Documento do Fluxo de Trabalho, -Workflow Name,Nome do Fluxo de Trabalho, -Workflow State,Status do Fluxo de Trabalho, -Workflow State Field,Campo do Status do Fluxo de Trabalho, -Workflow State not set,Estado do fluxo de trabalho não definido, -Workflow Transition,Transição do Fluxo de Trabalho, -Workflow state represents the current state of a document.,O Status do Fluxo de Trabalho representa o status atual de um documento., -Write,Escrever, -Wrong fieldname {0} in add_fetch configuration of custom script,Nome de campo errado {0} na configuração add_fetch do script personalizado, -X Axis Field,Campo do eixo X, -XLSX,XLSX, -Y Axis Fields,Campos do eixo Y, -Yahoo Mail,Email do Yahoo, -Yandex.Mail,Yandex.Mail, -Yesterday,Ontem, -You are connected to internet.,Você está conectado à internet., -You are not allowed to create columns,Você não tem permissão para criar colunas, -You are not allowed to delete a standard Website Theme,Você não tem permissão para excluir um site Tema padrão, -You are not allowed to print this document,Você não tem permissão para imprimir este documento, -You are not allowed to print this report,Você não tem permissão para imprimir este relatório, -You are not allowed to send emails related to this document,Você não tem permissão para enviar emails relacionados a este documento, -You are not allowed to update this Web Form Document,Você não tem permissão para atualizar esse formulário Documento Web, -You are not connected to Internet. Retry after sometime.,Você não está conectado à Internet. Tente novamente após algum tempo., -You are not permitted to access this page.,Você não tem permissão para acessar esta página., -You are not permitted to view the newsletter.,Você não tem permissão para visualizar a newsletter., -You are now following this document. You will receive daily updates via email. You can change this in User Settings.,Você está seguindo este documento agora. Você receberá atualizações diárias via e-mail. Você pode alterar isso nas configurações do usuário., -You can add dynamic properties from the document by using Jinja templating.,Você pode adicionar propriedades dinâmicas do documento usando Jinja templates., -You can also copy-paste this ,Você também pode copiar e colar, -"You can change Submitted documents by cancelling them and then, amending them.",Você pode alterar documentos cancelados, -You can find things by asking 'find orange in customers',Você pode encontrar as coisas pedindo "encontrar fulano em clientes", -You can only upload upto 5000 records in one go. (may be less in some cases),Você só pode fazer upload de até 5.000 registros de uma só vez. (Este valor pode vir a ser inferior em alguns casos), -You can use Customize Form to set levels on fields.,Você pode usar "Personalizar Formulário" para definir os níveis de campos., -You can use wildcard %,Você pode usar o coringa %, -You can't set 'Options' for field {0},Você não pode configurar 'Opções' para o campo {0}, -You can't set 'Translatable' for field {0},Você não pode configurar 'Traduzível' para o campo {0}, -You cannot give review points to yourself,Você não pode dar pontos de avaliação para si mesmo, -You cannot unset 'Read Only' for field {0},Você não pode desabilitar "Somente leitura" para o campo {0}, -You do not have enough permissions to access this resource. Please contact your manager to get access.,"Você não tem permissão suficiente para acessar este recurso. Por favor, contate o administrador para ter acesso.", -You do not have enough permissions to complete the action,Você não tem permissão suficiente para completar a ação, -You do not have enough points,Você não tem pontos suficientes, -You do not have enough review points,Você não tem pontos de revisão suficientes, -You don't have access to Report: {0},Você não tem acesso ao Relatório: {0}, -You don't have any messages yet.,Ainda não tem nenhuma mensagem., -You don't have permission to access this file,Você não tem permissão para acessar este arquivo, -You don't have permission to get a report on: {0},Você não tem permissão para acessar um relatório sobre: {0}, -You don't have the permissions to access this document,Você não tem as permissões para acessar este documento, -You gained {0} point,Você ganhou {0} ponto, -You gained {0} points,Você ganhou {0} pontos, -You have a new message from: ,Você tem uma nova mensagem de:, -You have been successfully logged out,Você saiu do sistema com sucesso, -You have unsaved changes in this form. Please save before you continue.,Você tem alterações não salvas neste formulário., -You must login to submit this form,Você precisa estar logado para enviar este formulário, -You need to be in developer mode to edit a Standard Web Form,Você precisa estar no modo de desenvolvedor para editar um Formulário Web Padrão, -You need to be logged in and have System Manager Role to be able to access backups.,Você precisa estar conectado e ter permissão para ser capaz de acessar backups., -You need to be logged in to access this {0}.,Você precisa estar logado para acessar esta {0}., -You need to have "Share" permission,Você precisa ter a permissão "Compartilhar", -You need write permission to rename,Você precisa escrever permissão para renomear, -You selected Draft or Cancelled documents,Você selecionou documentos preliminares ou cancelados, -You unfollowed this document,Você deixou de seguir este documento, -Your Country,Seu País, -Your Language,Seu Idioma, -Your Name,Seu Nome, -Your account has been locked and will resume after {0} seconds,Sua conta foi bloqueada e será retomada após {0} segundos, -Your connection request to Google Calendar was successfully accepted,Sua solicitação de conexão ao Google Agenda foi aceita com sucesso, -Your information has been submitted,Suas informações foram enviadas, -Your login id is,Sua identificação de acesso é, -Your organization name and address for the email footer.,Nome da empresa e endereço para o rodapé do email., -Your payment has been successfully registered.,Seu pagamento foi registrado com sucesso., -Your payment has failed.,O seu pagamento falhou., -Your payment is cancelled.,Seu pagamento está cancelado., -Your payment was successfully accepted,Seu pagamento foi aceito com sucesso, -"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Sua consulta foi recebida. Nós responderemos de volta em breve. Se você tiver qualquer informação adicional, por favor responda a este email.", -"Your session has expired, please login again to continue.","Sua sessão expirou, faça o login novamente para continuar.", -Zero,Zero, -Zero means send records updated at anytime,Zero significa enviar registros atualizados a qualquer momento, -_doctype,_doctype, -_report,_relatório, -adjust,ajustar, -after_insert,after_insert, -align-center,Centralizar, -align-justify,Justificar, -align-left,Alinhar à esquerda, -align-right,Alinhar à direita, -ap-northeast-1,ap-northeast-1, -ap-northeast-2,ap-northeast-2, -ap-northeast-3,ap-northeast-3, -ap-south-1,ap-south-1, -ap-southeast-1,ap-southeast-1, -ap-southeast-2,ap-southeast-2, -arrow-down,seta para baixo, -arrow-left,seta para a esquerda, -arrow-right,seta para a direita, -arrow-up,seta para cima, -asterisk,asterisco, -backward,para trás, -ban-circle,círculo de proibição, -bell,sino, -bookmark,favorito, -briefcase,pasta, -bullhorn,megafone, -ca-central-1,ca-central-1, -camera,câmera, -cancelled this document,cancelou este documento, -changed value of {0},mudou o valor de {0}, -changed values for {0},mudou o valor para {0}, -chevron-down,divisa-abaixo, -chevron-left,divisa-esquerda, -chevron-right,divisa-direito, -chevron-up,divisa-acima, -circle-arrow-down,círculo de seta para baixo, -circle-arrow-left,círculo de seta para a esquerda, -circle-arrow-right,círculo de seta à direita, -circle-arrow-up,círculo de seta para cima, -cn-north-1,cn-north-1, -cn-northwest-1,cn-northwest-1, -cog,roda dentada, -darkgrey,cinza escuro, -dd-mm-yyyy,dd-mm-aaaa, -dd.mm.yyyy,dd.mm.aaaa, -dd/mm/yyyy,dd/mm/aaaa, -"document type..., e.g. customer","Tipo de documento ..., por exemplo: cliente", -domain name,nome de domínio, -download-alt,download-alt, -"e.g. ""Support"", ""Sales"", ""Jerry Yang""","ex: ""Pós-Venda"", "" Vendas "", ""Edmilson""", -e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por exemplo (55 + 434) / 4 ou = Math.sin (Math.PI / 2) ..., -e.g. pop.gmail.com / imap.gmail.com,ex: pop.gmail.com / imap.gmail.com, -e.g. replies@yourcomany.com. All replies will come to this inbox.,eg replies@yourcomany.com. Todas as respostas virão a esta caixa de entrada., -e.g. smtp.gmail.com,ex: smtp.gmail.com, -e.g.:,ex:, -eject,ejetar, -envelope,envelope, -eu-central-1,eu-central-1, -eu-north-1,eu-north-1, -eu-west-1,eu-west-1, -eu-west-2,eu-oeste-2, -eu-west-3,eu-oeste-3, -exclamation-sign,sinal de exclamação, -eye-close,olho fechado, -eye-open,olho aberto, -facetime-video,vídeo do facetime, -fairlogin,fairlogin, -fast-backward,retrocesso rápido, -fast-forward,avanço rápido, -film,filme, -fire,fogo, -folder-close,fechar pasta, -folder-open,abrir pasta, -fullscreen,tela cheia, -gained by {0} via automatic rule {1},ganho por {0} via regra automática {1}, -gained {0} points,ganhou {0} pontos, -gave {0} points,deu {0} pontos, -gift,presente, -glass,vidro, -globe,globo, -hand-down,mão abaixo, -hand-left,mão à esquerda, -hand-right,mão à direita, -hand-up,mão acima, -hdd,hdd, -headphones,fones de ouvido, -heart,coração, -hub,Hub, -indent-left,indentar à esquerda, -indent-right,indentar à direita, -info-sign,Sinal de Informações, -italic,itálico, -john@doe.com,john@doe.com, -just now,agora mesmo, -leaf,folha, -lightblue,azul claro, -list-alt,lista de alt-, -magnet,ímã, -map-marker,marcador do mapa, -merged {0} into {1},Combinado {0} com {1}, -minus,menos, -minus-sign,sinal de menos, -mm-dd-yyyy,mm-dd-aaaa, -mm/dd/yyyy,mm/dd/aaaa, -module name...,nome do módulo ..., -new type of document,novo tipo de documento, -no failed attempts,tentativas não falharam, -none of,nenhum, -ok,ok, -ok-circle,ok-círculo, -ok-sign,ok-sinal, -on_cancel,on_cancel, -on_change,em mudança, -on_submit,on_submit, -on_trash,on_trash, -on_update,on_update, -on_update_after_submit,on_update_after_submit, -only.,apenas., -or,ou, -pause,pausar, -pencil,lápis, -picture,imagem, -plane,avião, -play,jogar, -play-circle,jogo-círculo, -plus,mais, -plus-sign,sinal de mais, -qrcode,QRCode, -query-report,relatório-de-consulta, -question-sign,ponto de interrogação, -remove-circle,remove-círculo, -remove-sign,remover-assinar, -removed,removido, -renamed from {0} to {1},renomeado de {0} para {1}, -repeat,repetir, -resize-full,redimensionamento completo, -resize-horizontal,redimensionamento horizontal, -resize-small,redimensionamento pequeno, -resize-vertical,redimensionamento vertical, -restored {0} as {1},restaurado {0} como {1}, -retweet,retwitar, -road,estrada, -sa-east-1,sa-east-1, -screenshot,captura de tela, -share-alt,partes-alt, -shopping-cart,carrinho de compras, -show,mostrar, -signal,sinalizar, -star,estrela, -star-empty,sem estrela, -step-backward,voltar, -step-forward,prosseguir, -submitted this document,enviou este documento, -text in document type,texto em tipo de documento, -text-height,altura de texto, -text-width,largura de texto, -th,ª, -th-large,ª-grande, -th-list,ª-lista, -thumbs-down,polegar para baixo, -thumbs-up,polegar para cima, -tint,matiz, -toggle Tag,alternar Tag, -updated to {0},atualizado para {0}, -us-east-1,us-east-1, -us-east-2,us-east-2, -us-west-1,us-west-1, -us-west-2,us-west-2, -use % as wildcard,usar % como coringa, -values separated by commas,valores separados por vírgulas, -via automatic rule {0} on {1},via regra automática {0} em {1}, -viewed,visto, -volume-down,diminuir volume, -volume-off,mudo, -volume-up,aumentar volume, -warning-sign,sinal de alerta, -wrench,chave inglesa, -yyyy-mm-dd,dd/mm/yyyy, -zoom-in,aumentar zoom, -zoom-out,diminuir zoom, -{0} Calendar,{0} Calendário, -{0} Chart,{0} Gráfico, -{0} Dashboard,{0} Dashboard, -{0} List,{0} Lista(s), -{0} Modules,{0} módulos, -{0} Report,{0} Relatório, -{0} Settings not found,{0} Configurações não encontradas, -{0} Tree,Árvore de {0}, -{0} added,{0} adicionado, -{0} already exists. Select another name,{0} já existe. Selecione outro nome, -{0} already unsubscribed,{0} já teve sua inscrição removida, -{0} already unsubscribed for {1} {2},{0} já teve sua sua inscrição cancelada para {1} {2}, -{0} and {1},{0} e {1}, -{0} appreciated on {1},{0} apreciado em {1}, -{0} appreciated your work on {1} with {2} point,{0} apreciou seu trabalho em {1} com {2} ponto, -{0} appreciated your work on {1} with {2} points,{0} apreciou seu trabalho em {1} com {2} pontos, -{0} appreciated {1},{0} apreciado {1}, -{0} appreciation point for {1} {2},{0} ponto de apreciação para {1} {2}, -{0} appreciation points for {1} {2},{0} pontos de apreciação para {1} {2}, -{0} assigned {1}: {2},{0} atribuído {1}: {2}, -{0} cannot be set for Single types,{0} não pode ser ajustada para os modelos únicos, -{0} comments,{0} comentários, -{0} created successfully,{0} criado com sucesso, -{0} criticism point for {1} {2},{0} ponto de crítica para {1} {2}, -{0} criticism points for {1} {2},{0} pontos de criticismo para {1} {2}, -{0} criticized on {1},{0} criticado em {1}, -{0} criticized your work on {1} with {2} point,{0} criticou seu trabalho em {1} com {2} ponto, -{0} criticized your work on {1} with {2} points,{0} criticou seu trabalho em {1} com {2} pontos, -{0} criticized {1},{0} criticou {1}, -{0} days ago,{0} dias atrás, -{0} does not exist in row {1},{0} não existe em linha {1}, -"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} campo não pode ser definido como único em {1}, pois há valores duplicados existentes", -{0} has already assigned default value for {1}.,{0} já atribuiu o valor padrão para {1}., -{0} has been successfully added to the Email Group.,"{0} foi adicionado com sucesso ao grupo de emails,", -{0} has left the conversation in {1} {2},{0} deixou a conversa em {1} {2}, -{0} hours ago,{0} horas atrás, -{0} in row {1} cannot have both URL and child items,{0} na linha {1} não pode ter URL e Itens vinculados ao mesmo tempo, -{0} is a mandatory field,{0} é um campo obrigatório, -{0} is an invalid email address in 'Recipients',{0} é um endereço de e-mail inválido em 'Destinatários', -{0} is not a raw printing format.,{0} não é um formato de impressão não processado., -{0} is not a valid Email Address,{0} não é um endereço de email válido, -{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} não é um estado válido do fluxo de trabalho. Atualize seu fluxo de trabalho e tente novamente., -{0} is now default print format for {1} doctype,{0} agora é o formato de impressão padrão para o doctype {1}, -{0} is saved,{0} foi salvo, -{0} items selected,{0} itens selecionados, -{0} logged in,{0} logado(s), -{0} logged out: {1},{0} deslogado: {1}, -{0} minutes ago,{0} minutos atrás, -{0} months ago,{0} meses atrás, -{0} must be one of {1},{0} deve fazer parte de {1}, -{0} must be set first,{0} deve ser definida primeiro, -{0} must be unique,{0} já foi cadastrado e deve ser único, -{0} not a valid State,{0} não é um status válido, -{0} not allowed to be renamed,não é permitido renomear {0}, -{0} not found,{0} não encontrado, -{0} of {1},{0} de {1}, -{0} or {1},{0} ou {1}, -{0} record deleted,{0} registro excluído, -{0} records deleted,{0} registros excluídos, -{0} reverted your point on {1},{0} reverteu seu ponto em {1}, -{0} reverted your points on {1},{0} reverteu seus pontos em {1}, -{0} reverted {1},{0} revertido {1}, -{0} room must have atmost one user.,{0} sala deve ter no máximo um usuário., -{0} rows for {1},{0} linhas para {1}, -{0} saved successfully,{0} salvo com sucesso, -{0} self assigned this task: {1},{0} self designou esta tarefa: {1}, -{0} shared this document with everyone,{0} compartilhou este documento com todos, -{0} shared this document with {1},{0} compartilhou este documento com {1}, -{0} subscribers added,{0} assinantes acrescentados, -{0} to stop receiving emails of this type,{0} para parar de receber e-mails desse tipo, -{0} to {1},{0} para {1}, -{0} un-shared this document with {1},{0} descompartilhou este documento com {1}, -{0} updated,{0} atualizado(a), -{0} weeks ago,{0} semanas atrás, -{0} {1} added,{0} {1} adicionado, -{0} {1} already exists,{0} {1} já existe, -{0} {1} cannot be "{2}". It should be one of "{3}",{0} {1} não pode ser "{2}". Deve pertencer a "{3}", -{0} {1} cannot be a leaf node as it has children,"{0} {1} não pode ser um nó de extremidade , uma vez que tem filhos", -"{0} {1} does not exist, select a new target to merge","{0} {1} não existe , selecione um novo alvo para mesclar", -{0} {1} not found,{0} {1} não encontrado, -{0} {1} to {2},{0} {1} para {2}, -"{0}, Row {1}","{0}, Linha {1}", -"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vai ficar truncado, pois os caracteres máximos permitidos são {2}", -{0}: Cannot set Amend without Cancel,{0}: Não é possível definir Amend sem Cancelar, -{0}: Cannot set Assign Amend if not Submittable,{0}: Não é possível definir atributo Corrigir se não pode ser enviado, -{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível definir atributo Enviar se não pode ser enviado, -{0}: Cannot set Cancel without Submit,{0}: Não é possível definir Cancelar sem Submeter, -{0}: Cannot set Import without Create,{0}: Não é possível definir Importação sem Criar, -"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Não é possível definir Enviar, Cancelar, Alterar sem Salvar", -{0}: Cannot set import as {1} is not importable,{0}: Não é possível definir importação como {1} se não é importável, -{0}: No basic permissions set,{0}: Nenhum conjunto de permissões básico, -"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Apenas uma regra de permissão com a mesma função, nível e {1}", -{0}: Permission at level 0 must be set before higher levels are set,{0} : permissão no nível 0 deve ser definida antes de definir os níveis mais altos, -{0}: {1} in {2},{0}: {1} em {2}, -{0}: {1} is set to state {2},{0}: {1} está configurado para declarar {2}, -{app_title},{app_title}, -{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} não é padrão para nome de campo válido. Deve ser {{field_name}}., -Communication Link,Link de comunicação, -Force User to Reset Password,Forçar usuário a redefinir a senha, -In Days,Em dias, -Last Password Reset Date,Data da última redefinição de senha, -The password of your account has expired.,A senha da sua conta expirou., -Workflow State transition not allowed from {0} to {1},Transição do estado do fluxo de trabalho não permitida de {0} para {1}, -{0} must be after {1},{0} deve ser depois de {1}, -{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: o campo '{1}' não pode ser definido como Único, pois possui valores não exclusivos", -{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: o campo {1} na linha {2} não pode ser oculto e obrigatório sem padrão, -{0}: Field {1} of type {2} cannot be mandatory,{0}: o campo {1} do tipo {2} não pode ser obrigatório, -{0}: Fieldname {1} appears multiple times in rows {2},{0}: O nome do campo {1} aparece várias vezes nas linhas {2}, -{0}: Fieldtype {1} for {2} cannot be unique,{0}: o tipo de campo {1} para {2} não pode ser exclusivo, -{0}: Options must be a valid DocType for field {1} in row {2},{0}: as opções devem ser um DocType válido para o campo {1} na linha {2}, -{0}: Options required for Link or Table type field {1} in row {2},{0}: Opções necessárias para o campo Tipo de link ou tabela {1} na linha {2}, -{0}: Options {1} must be the same as doctype name {2} for the field {3},{0}: as opções {1} devem ser as mesmas que o nome do tipo de documento {2} para o campo {3}, -{0}:Fieldtype {1} for {2} cannot be indexed,{0}: o tipo de campo {1} para {2} não pode ser indexado, -Make {0},Faça {0}, -A user who posts blogs.,Um usuário que posta blogs., -Applying: {0},Aplicando: {0}, -Fieldname {0} is restricted,O nome do campo {0} é restrito, -Is Optional State,É estado opcional, -No values to show,Nenhum valor para mostrar, -View Ref,Visualizar Ref, -Workflow Action is not created for optional states,A ação do fluxo de trabalho não é criada para estados opcionais, -{0} values selected,{0} valores selecionados, -"amended_from" field must be present to do an amendment.,O campo "alterado_de" deve estar presente para fazer uma alteração., -(Mandatory),(Obrigatório), -1 Google Calendar Event synced.,1 Evento do Google Agenda sincronizado., -1 record will be exported,1 registro será exportado, -1 week ago,1 semana atrás, -5 Records,5 registros, -A recurring {0} {1} has been created for you via Auto Repeat {2}.,Um {0} {1} recorrente foi criado para você através da Repetição automática {2}., -API,API, -API Method,Método API, -About {0} minute remaining,Cerca de {0} minuto restante, -About {0} minutes remaining,Cerca de {0} minutos restantes, -About {0} seconds remaining,Cerca de {0} segundos restantes, -Access Log,Log de acesso, -Access not allowed from this IP Address,Acesso não permitido deste endereço IP, -Action Type,Tipo de acão, -Activity Log by ,Log de atividades por, -Add Fields,Adicionar campos, -Administration,Administração, -After Cancel,Após Cancelar, -After Delete,Após Excluir, -After Save,Após salvar, -After Save (Submitted Document),Após salvar (documento enviado), -After Submit,Após o envio, -Aggregate Function Based On,Função agregada com base em, -Aggregate Function field is required to create a dashboard chart,O campo Função Agregada é necessário para criar um gráfico de dashboard, -All Records,Todos os registros, -Allot Points To Assigned Users,Atribuir pontos aos usuários atribuídos, -Allow Auto Repeat,Permitir repetição automática, -Allow Google Calendar Access,Permitir acesso ao Google Agenda, -Allow Google Contacts Access,Permitir acesso aos Contatos do Google, -Allow Google Drive Access,Permitir acesso ao Google Drive, -Allow Guest,Permitir convidado, -Allow Guests to Upload Files,Permitir que os convidados façam upload de arquivos, -Also adding the status dependency field {0},Incluindo também o campo de dependência do status {0}, -An error occurred while setting Session Defaults,Ocorreu um erro ao definir os Padrões da Sessão, -Annual,Anual, -Append Emails to Sent Folder,Anexar emails à pasta enviada, -Apply Assignment Rule,Aplicar regra de atribuição, -Apply Only Once,Aplicar apenas uma vez, -Apply this rule only once per document,Aplique esta regra apenas uma vez por documento, -Approval Required,Aprovação necessária, -Approved,Aprovado, -Are you sure you want to delete all rows?,Tem certeza de que deseja excluir todas as linhas?, -Are you sure you want to delete this post?,Tem certeza de que deseja excluir esta postagem?, -Are you sure you want to merge {0} with {1}?,Tem certeza de que deseja mesclar {0} com {1}?, -Assignment Day {0} has been repeated.,O dia da tarefa {0} foi repetido., -Assignment Days,Dias de atribuição, -Assignment Rule Day,Dia da regra de atribuição, -Assignments,atribuições, -Attach a web link,Anexar um link da web, -Authorize Google Calendar Access,Autorizar acesso ao Google Agenda, -Authorize Google Contacts Access,Autorizar o acesso dos Contatos do Google, -Authorize Google Drive Access,Autorizar acesso ao Google Drive, -Auto Repeat Document Creation Failed,Falha na criação de documentos de repetição automática, -Auto Repeat Document Creation Failure,Falha na criação de documentos de repetição automática, -Auto Repeat created for this document,Repetição automática criada para este documento, -Auto Repeat failed for {0},A repetição automática falhou para {0}, -Automatic Linking can be activated only for one Email Account.,O link automático pode ser ativado apenas para uma conta de e-mail., -Automatic Linking can be activated only if Incoming is enabled.,O Link automático só pode ser ativado se a Entrada estiver ativada., -Automatically generates recurring documents.,Automaticamente gera documentos recorrentes., -Backing up to Google Drive.,Fazendo backup no Google Drive., -Backup Folder ID,ID da pasta de backup, -Backup Folder Name,Nome da pasta de backup, -Before Cancel,Antes de Cancelar, -Before Delete,Antes de excluir, -Before Insert,Antes da inserção, -Before Save,Antes de salvar, -Before Save (Submitted Document),Antes de salvar (documento enviado), -Before Submit,Antes de enviar, -Blank Template,Modelo em branco, -Callback URL,URL de retorno de chamada, -Cancel All Documents,Cancelar todos os documentos, -Cancelling documents,Cancelando documentos, -Cannot match column {0} with any field,Não é possível combinar a coluna {0} com nenhum campo, -Change,mudança, -Change User,Mudar usuário, -Check the Error Log for more information: {0},Verifique o log de erros para mais informações: {0}, -Clear Cache and Reload,Limpar cache e recarregar, -Clear Filters,Limpar filtros, -Click on Authorize Google Drive Access to authorize Google Drive Access.,Clique em Autorizar acesso ao Google Drive para autorizar o acesso ao Google Drive., -Click on a file to select it.,Clique em um arquivo para selecioná-lo., -Click on the link below to approve the request,Clique no link abaixo para aprovar o pedido, -Click on the lock icon to toggle public/private,Clique no ícone de cadeado para alternar entre público / privado, -Click on {0} to generate Refresh Token.,Clique em {0} para gerar o Token de Atualização., -Close Condition,Fechar Condição, -Column {0},Coluna {0}, -Columns / Fields,Colunas / Campos, -"Configure notifications for mentions, assignments, energy points and more.","Configure notificações para menções, atribuições, pontos de energia e muito mais.", -Contact Email,Email de Contato, -Contact Numbers,Números de contato, -Contact Phone,telefone de contato, -Contact Synced with Google Contacts.,Contato sincronizado com os contatos do Google., -Context,Contexto, -Contribute Translations,Contribuir Traduções, -Contributed,Contribuído, -Controller method get_razorpay_order missing,Falta o método get_razorpay_order do controlador, -Copied to clipboard.,Copiado para a área de transferência., -Core Modules {0} cannot be searched in Global Search.,Os módulos principais {0} não podem ser pesquisados na Pesquisa Global., -Could not create Razorpay order. Please contact Administrator,Não foi possível criar o pedido Razorpay. Entre em contato com o administrador, -Could not create razorpay order,Não foi possível criar a ordem razorpay, -Create Log,Criar log, -Create your first {0},Crie seu primeiro {0}, -Created {0} records successfully.,Criou {0} registros com sucesso., -Cron,Cron, -Cron Format,Formato Cron, -Daily Events should finish on the Same Day.,Os eventos diários devem terminar no mesmo dia., -Daily Long,Diário Longo, -Default Role on Creation,Função Padrão na Criação, -Default Theme,Tema Padrão, -Default {0},Padrão {0}, -Delete All,Excluir tudo, -Do you want to cancel all linked documents?,Deseja cancelar todos os documentos vinculados?, -DocType Action,Ação DocType, -DocType Event,Evento DocType, -DocType Link,Link DocType, -Document Share,Partilha de Documentos, -Document Tag,Etiqueta de Documento, -Document Title,Título do documento, -Document Type Field Mapping,Mapeamento de campos do tipo de documento, -Document Type Mapping,Mapeamento do tipo de documento, -Document Type {0} has been repeated.,O tipo de documento {0} foi repetido., -Document renamed from {0} to {1},Documento renomeado de {0} para {1}, -Document type is required to create a dashboard chart,O tipo de documento é necessário para criar um gráfico de dashboard, -Documentation Link,Link da documentação, -Don't Import,Não importe, -Don't Send Emails,Não envie emails, -"Drag and drop files, ","Arraste e solte arquivos,", -Drop,Solta, -Drop Here,Solta aqui, -Drop files here,Solte arquivos aqui, -Dynamic Template,Modelo dinâmico, -ERPNext Role,Função ERPNext, -Email / Notifications,Email / Notificações, -Email Account setup please enter your password for: {0},"Configuração da conta de e-mail, digite sua senha para: {0}", -Email Address whose Google Contacts are to be synced.,Endereço de e-mail cujos contatos do Google devem ser sincronizados., -"Email ID must be unique, Email Account already exists for {0}",O ID do email deve ser exclusivo. A conta de email já existe para {0}, -Email IDs,IDs de email, -Enable Allow Auto Repeat for the doctype {0} in Customize Form,Ativar Permitir repetição automática para o tipo de documento {0} em Personalizar formulário, -Enable Automatic Linking in Documents,Ativar Vinculação Automática em Documentos, -Enable Email Notifications,Ativar notificações por email, -Enable Google API in Google Settings.,Ative a API do Google nas configurações do Google., -Enable Security,Ativar segurança, -Energy Point,Ponto de energia, -Enter Client Id and Client Secret in Google Settings.,Digite o ID do cliente e o segredo do cliente nas Configurações do Google., -Enter Code displayed in OTP App.,Digite o código exibido no aplicativo OTP., -Event Configurations,Configurações de evento, -Event Consumer,Consumidor de Eventos, -Event Consumer Document Type,Tipo de documento do consumidor do evento, -Event Consumer Document Types,Tipos de documento do consumidor do evento, -Event Producer,Produtor de Eventos, -Event Producer Document Type,Tipo de documento do produtor de eventos, -Event Producer Document Types,Tipos de documento do produtor de eventos, -Event Streaming,Fluxo de Eventos, -Event Subscriber,Assinante do Evento, -Event Sync Log,Log de Sincronização de Eventos, -Event Synced with Google Calendar.,Evento sincronizado com o Google Agenda., -Event Update Log,Log de Atualização de Eventos, -Export 1 record,Exportar 1 registro, -Export Errored Rows,Exportar linhas com erro, -Export From,Exportar de, -Export Type,Tipo de exportação, -Export {0} records,Exportar {0} registros, -Failed to connect to the Event Producer site. Retry after some time.,Falha ao conectar ao site do Event Producer. Tente novamente após algum tempo., -Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Falha ao criar um Consumidor de Eventos ou Consumidor de Eventos para o site atual já está registrado., -Failure,Falha, -Fetching default Global Search documents.,Buscando documentos padrão da Pesquisa Global., -Fetching posts...,Buscando postagens ..., -Field Mapping,Mapeamento de Campo, -Field To Check,Campo a verificar, -File Information,Informações do arquivo, -Filter By,Filtrar por, -Filtered Records,Registros Filtrados, -Filters applied for {0},Filtros aplicados para {0}, -Finished,Acabado, -First,Primeiro, -For Document Event,Para evento de documento, -"For more information, click here.","Para mais informações, clique aqui .", -"For more information, {0}.","Para mais informações, {0}.", -"For performance, only the first 100 rows were processed.","Para desempenho, apenas as primeiras 100 linhas foram processadas.", -Form URL-Encoded,Codificado em URL do formulário, -Frequently Visited Links,Links visitados frequentemente, -From Date,Data De, -From User,Do Usuário, -Global Search DocType,DocType de pesquisa global, -Global Search Document Types Reset.,Redefinir tipos de documentos de pesquisa global., -Global Search Settings,Configurações globais de pesquisa, -Global Shortcuts,Atalhos Globais, -Go,Ir, -Go to next record,Vai para o próximo registro, -Go to previous record,Ir para o registro anterior, -Google API Settings.,Configurações da API do Google., -Google Calendar,Agenda do Google, -"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Agenda - Não foi possível criar a Agenda para {0}, código de erro {1}.", -"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Não foi possível excluir o Evento {0} do Google Agenda, código de erro {1}.", -"Google Calendar - Could not fetch event from Google Calendar, error code {0}.","Google Agenda - Não foi possível buscar o evento no Google Agenda, código de erro {0}.", -"Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}.","Google Agenda - Não foi possível inserir o contato nos Contatos do Google {0}, código de erro {1}.", -"Google Calendar - Could not insert event in Google Calendar {0}, error code {1}.","Google Agenda - Não foi possível inserir o evento no Google Agenda {0}, código de erro {1}.", -"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Não foi possível atualizar o Evento {0} no Google Agenda, código de erro {1}.", -Google Calendar Event ID,ID do evento do Google Agenda, -Google Calendar Integration.,Integração com o Google Agenda., -Google Calendar has been configured.,O Google Agenda foi configurado., -Google Contacts,Contatos do Google, -"Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}.","Contatos do Google - Não foi possível sincronizar contatos dos Contatos do Google {0}, código de erro {1}.", -"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Contatos do Google - Não foi possível atualizar o contato nos Contatos do Google {0}, código de erro {1}.", -Google Contacts Id,ID de contatos do Google, -Google Contacts Integration is disabled.,A integração de contatos do Google está desativada., -Google Contacts Integration.,Integração de Contatos do Google., -Google Contacts has been configured.,O Contatos do Google foi configurado., -Google Drive,Google Drive, -Google Drive - Could not create folder in Google Drive - Error Code {0},Google Drive - Não foi possível criar a pasta no Google Drive - Código de erro {0}, -Google Drive - Could not find folder in Google Drive - Error Code {0},Google Drive - Não foi possível encontrar a pasta no Google Drive - Código de erro {0}, -Google Drive Backup Successful.,Backup do Google Drive bem-sucedido., -Google Drive Backup.,Backup do Google Drive., -Google Drive Integration.,Integração com o Google Drive., -Google Drive has been configured.,O Google Drive foi configurado., -Google Integration is disabled.,A integração do Google está desativada., -Google Settings,Configurações do Google, -Group By,Agrupar por, -Group By Based On,Agrupar por Com base em, -Group By Type,Agrupar por tipo, -Group By field is required to create a dashboard chart,O campo Agrupar por é necessário para criar um gráfico de dashboard, -HH:mm,HH: mm, -HH:mm:ss,HH: mm: ss, -HOOK-.####,GANCHO-.####, -HTML Page,Página HTML, -Has Mapping,Possui mapeamento, -Hourly Long,Por hora, -"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Se porta não padrão (por exemplo, POP3: 995/110, IMAP: 993/143)", -If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Se o documento tiver nomes de campos diferentes no final do produtor e do consumidor, verifique isso e configure o mapeamento", -If this is checked the documents will have the same name as they have on the Event Producer's site,"Se esta opção estiver marcada, os documentos terão o mesmo nome do site do Produtor de Eventos", -Illegal SQL Query,Consulta SQL ilegal, -Import File,Importar arquivo, -Import Log Preview,Visualização do registro de importação, -Import Preview,Visualização de importação, -Import Progress,Progresso da importação, -Import Type,Tipo de Importação, -Import Warnings,Avisos de importação, -"Import template should be of type .csv, .xlsx or .xls","O modelo de importação deve ser do tipo .csv, .xlsx ou .xls", -Import template should contain a Header and atleast one row.,"O modelo de importação deve conter um cabeçalho e, pelo menos, uma linha.", -Importing {0} of {1},Importando {0} de {1}, -"Importing {0} of {1}, {2}","Importando {0} de {1}, {2}", -Include indentation,Incluir recuo, -Incoming Change,Mudança de entrada, -Invalid Filter Value,Valor de filtro inválido, -Invalid URL,URL inválida, -Invalid field name: {0},Nome do campo inválido: {0}, -Invalid file URL. Please contact System Administrator.,URL de arquivo inválido. Entre em contato com o administrador do sistema., -Invalid include path,Caminho de inclusão inválido, -Invalid username or password,nome de usuário ou senha inválidos, -Is Primary,É primário, -Is Primary Mobile,É o celular principal, -Is Primary Phone,É o telefone principal, -Is Tree,É árvore, -JSON Request Body,Corpo da solicitação JSON, -Javascript is disabled on your browser,Javascript está desativado em seu navegador, -Job,Trabalho, -Jump to field,Ir para o campo, -Keyboard Shortcuts,Atalhos do teclado, -LDAP Group,Grupo LDAP, -LDAP Group Field,Campo do Grupo LDAP, -LDAP Group Mapping,Mapeamento do Grupo LDAP, -LDAP Group Mappings,Mapeamentos de grupo LDAP, -LDAP Last Name Field,Campo Sobrenome LDAP, -LDAP Middle Name Field,Campo de nome do meio LDAP, -LDAP Mobile Field,Campo Móvel LDAP, -LDAP Phone Field,Campo de telefone LDAP, -LDAP User Creation and Mapping,Criação e Mapeamento de Usuários LDAP, -Landscape,Panorama, -Last,Último, -Last Backup On,Último backup ativado, -Last Execution,Última Execução, -Last Sync On,Última sincronização em, -Last Update,Última atualização, -Last refreshed,Última atualização, -Link Document Type,Tipo de Documento de Link, -Link Fieldname,Nome do campo do link, -Loading import file...,Carregando arquivo de importação ..., -Local Document Type,Tipo de Documento Local, -Log Data,Dados de log, -Main Section (HTML),Seção Principal (HTML), -Main Section (Markdown),Seção Principal (Remarcação), -"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Mantém um log de todas as inserções, atualizações e exclusões no site do Event Producer para documentos que possuem consumidores.", -Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Mantém um log de todos os eventos consumidos, juntamente com o status da sincronização e um botão Resync, caso a sincronização falhe.", -Make all attachments private,Tornar todos os anexos privados, -Mandatory Depends On,Obrigatório Depende, -Map Columns,Colunas do mapa, -Map columns from {0} to fields in {1},Mapeie colunas de {0} para campos em {1}, -Mapping column {0} to field {1},Mapeando a coluna {0} para o campo {1}, -Mark all as Read,Marcar tudo como lido, -Maximum Points,Pontos Máximos, -Maximum points allowed after multiplying points with the multiplier value\n(Note: For no limit leave this field empty or set 0),"Número máximo de pontos permitido após a multiplicação de pontos pelo valor multiplicador (Nota: para sem limite, deixe este campo vazio ou defina 0)", -Me,Eu, -Mention,Menção, -Modules,módulos, -Monthly Long,Mensalmente Longo, -Naming Series,Série de Atrib. de Nomes, -Navigate Home,Navegue para casa, -Navigate list down,Navegar pela lista, -Navigate list up,Navegar pela lista, -New Notification,Nova notificação, -New {0}: {1},Novo {0}: {1}, -Newsletter should have atleast one recipient,O boletim deve ter pelo menos um destinatário, -No Events Today,Hoje não há eventos, -No Google Calendar Event to sync.,Nenhum evento do Google Agenda para sincronizar., -No More Activity,Não há mais atividade, -No Name Specified for {0},Nenhum nome especificado para {0}, -No Upcoming Events,Não há eventos futuros, -No activity,Nenhuma atividade, -No conditions provided,Nenhuma condição fornecida, -No contacts linked to document,Nenhum contato vinculado ao documento, -No data to export,Nenhum dado para exportar, -No documents found tagged with {0},Nenhum documento encontrado marcado com {0}, -No failed logs,Nenhum registro com falha, -No filters found,Nenhum filtro encontrado, -No more items to display,Não há mais itens para exibir, -No more posts,Não há mais postagens, -No new Google Contacts synced.,Nenhum novo Google Contacts sincronizado., -No pending or current jobs for this site,Não há trabalhos pendentes ou atuais para este site, -No posts yet,Ainda não há posts, -No records will be exported,Nenhum registro será exportado, -No results found for {0} in Global Search,Nenhum resultado encontrado para {0} na Pesquisa Global, -No user found,Nenhum usuário encontrado, -Not Specified,Não especificado, -Notification Log,Registro de Notificação, -Notification Settings,Configurações de notificação, -Notification Subscribed Document,Documento assinado de notificação, -Notifications Disabled,Notificações desativadas, -Number of Groups,Número de Grupos, -OAuth Client ID,ID do cliente OAuth, -OTP setup using OTP App was not completed. Please contact Administrator.,A configuração do OTP usando o aplicativo OTP não foi concluída. Entre em contato com o administrador., -Only one {0} can be set as primary.,Somente um {0} pode ser definido como primário., -Open Awesomebar,Open Awesomebar, -Open Chat,Abrir Chat, -Open Documents,Documentos abertos, -Open Help,Abra a Ajuda, -Open Settings,Abrir configurações, -Open list item,Abrir item da lista, -Organizational Unit for Users,Unidade Organizacional para Usuários, -Page Shortcuts,Atalhos de página, -Parent Field (Tree),Campo pai (árvore), -Parent Field must be a valid fieldname,O campo pai deve ser um nome de campo válido, -Pin Globally,Fixar globalmente, -Places,Lugares, -Please check the filter values set for Dashboard Chart: {},Verifique os valores de filtro definidos para o gráfico do dashboard: {}, -Please enable pop-ups in your browser,Por favor habilite pop-ups em seu navegador, -Please find attached {0}: {1},"Por favor, encontre em anexo {0}: {1}", -Please select applicable Doctypes,Por favor selecione Doctypes aplicáveis, -Portrait,Retrato, -Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pressione a tecla Alt para acionar atalhos adicionais no menu e na barra lateral, -Print Settings...,Configurações de impressão ..., -Producer Document Name,Nome do Documento do Produtor, -Producer URL,URL do produtor, -Property Depends On,Propriedade depende, -Pull from Google Calendar,Puxe do Google Agenda, -Pull from Google Contacts,Pull dos Contatos do Google, -Pulled from Google Calendar,Extraído do Google Agenda, -Pulled from Google Contacts,Extraído dos Contatos do Google, -Push to Google Calendar,Enviar para o Google Agenda, -Push to Google Contacts,Enviar para os Contatos do Google, -Queue / Worker,Fila / Trabalhador, -RAW Information Log,Registro de informações RAW, -Raw Printing Settings...,Configurações de impressão bruta ..., -Read Only Depends On,Somente leitura depende, -Recent Activity,Atividade recente, -Reference document has been cancelled,O documento de referência foi cancelado, -Reload File,Recarregar arquivo, -Remote Document Type,Tipo de documento remoto, -"Renamed files and replaced code in controllers, please check!","Renomeado arquivos e substituído o código em controladores, por favor, verifique!", -Repeat on Last Day of the Month,Repetir no último dia do mês, -Repeats {0},Repete {0}, -Report Information,Informações do Relatório, -Report with more than 10 columns looks better in Landscape mode.,Relatório com mais de 10 colunas parece melhor no modo Paisagem., -Request Structure,Estrutura da solicitação, -Restricted,Restrito, -Restrictions,Restrições, -Resync,Ressincronizar, -Row Number,Número da linha, -Row {0},Linha {0}, -Run Jobs only Daily if Inactive For (Days),Executar trabalhos apenas diariamente se inativo por (dias), -SMS was not sent. Please contact Administrator.,O SMS não foi enviado. Entre em contato com o administrador., -Saved Successfully,Salvo com sucesso, -Scheduled Job,Trabalho agendado, -Scheduled Job Log,Registro de trabalho agendado, -Scheduled Job Type,Tipo de trabalho agendado, -Scheduler Inactive,Agendador inativo, -Scheduler is inactive. Cannot import data.,O agendador está inativo. Não é possível importar dados., -Script Manager,Gerenciador de scripts, -Script Type,Tipo de Script, -Search Priorities,Prioridades de pesquisa, -Search Source Text,Texto de origem da pesquisa, -Search by filename or extension,Pesquisar por nome de arquivo ou extensão, -Select Date Range,Selecionar período, -Select Field,Selecione o campo, -Select Field...,Selecionar campo ..., -Select Filters,Selecione Filtros, -Select Google Calendar to which event should be synced.,Selecione Google Agenda com o qual o evento deve ser sincronizado., -Select Google Contacts to which contact should be synced.,Selecione Contatos do Google aos quais o contato deve ser sincronizado., -Select Group By...,Selecione Agrupar por ..., -Select Mandatory,Selecione Obrigatório, -Select atleast 2 actions,Selecione pelo menos 2 ações, -Select list item,Selecione o item da lista, -Select multiple list items,Selecione vários itens da lista, -Send an email to {0} to link it here,Envie um email para {0} para vinculá-lo aqui, -Server Action,Ação do Servidor, -Server Script,Script de Servidor, -Session Default,Default da Sessão, -Session Default Settings,Configurações padrão da sessão, -Session Defaults,Padrões de Sessão, -Session Defaults Saved,Padrões de sessão salvos, -Set as Default Theme,Definir como tema padrão, -Setting up Global Search documents.,Configurando documentos de Pesquisa Global., -Show Document,Mostrar documento, -Show Failed Logs,Mostrar logs com falha, -Show Keyboard Shortcuts,Mostrar atalhos de teclado, -Show More Activity,Mostrar mais atividade, -Show Traceback,Mostrar Traceback, -Show Warnings,Mostrar avisos, -Showing only first {0} rows out of {1},Mostrando apenas {0} primeiras linhas de {1}, -"Simple Python Expression, Example: Status in (""Invalid"")","Expressão Python simples, exemplo: status em ("inválido")", -Skipping Untitled Column,Ignorando coluna sem título, -Skipping column {0},Ignorando a coluna {0}, -Social Home,Social Home, -Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Algumas colunas podem ser cortadas ao imprimir em PDF. Tente manter o número de colunas abaixo de 10., -Something went wrong during the token generation. Click on {0} to generate a new one.,Algo deu errado durante a geração do token. Clique em {0} para gerar um novo., -Submit After Import,Enviar após importação, -Submitting...,Enviando ..., -Success! You are good to go 👍,Sucesso! Você é bom para ir 👍, -Successful Transactions,Transações bem-sucedidas, -Successfully Submitted!,Submetido com sucesso!, -Successfully imported {0} record.,Registro {0} importado com sucesso., -Successfully imported {0} records.,Registros {0} importados com sucesso., -Successfully updated {0} record.,Registro {0} atualizado com sucesso., -Successfully updated {0} records.,Registros {0} atualizados com sucesso., -Sync Calendar,Sincronizar Calendário, -Sync Contacts,Sincronizar contatos, -Sync with Google Calendar,Sincronize com o Google Agenda, -Sync with Google Contacts,Sincronizar com os contatos do Google, -Synced,Sincronizado, -Syncing,Sincronizando, -Syncing {0} of {1},Sincronizando {0} de {1}, -Tag Link,Tag Link, -Take Backup,Fazer backup, -Template Error,Erro de modelo, -Template Options,Opções de modelo, -Template Warnings,Avisos do modelo, -The Auto Repeat for this document has been disabled.,A repetição automática para este documento foi desativada., -The following records needs to be created before we can import your file.,Os seguintes registros precisam ser criados antes que possamos importar seu arquivo., -The mapping configuration between two doctypes.,A configuração de mapeamento entre dois doctypes., -The site which is consuming your events.,O site que está consumindo seus eventos., -The site you want to subscribe to for consuming events.,O site que você deseja assinar para consumir eventos., -The webhook will be triggered if this expression is true,O webhook será acionado se esta expressão for verdadeira, -The {0} is already on auto repeat {1},O {0} já está em repetição automática {1}, -There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Existem alguns registros vinculados que precisam ser criados antes que possamos importar seu arquivo. Deseja criar os seguintes registros ausentes automaticamente?, -There should be atleast one row for the following tables: {0},Deve haver pelo menos uma linha para as seguintes tabelas: {0}, -There should be atleast one row for {0} table,Deve haver pelo menos uma linha para a tabela {0}, -This action is only allowed for {},Esta ação é permitida apenas para {}, -This cannot be undone,Isto não pode ser desfeito, -Time Format,Formato da hora, -Time series based on is required to create a dashboard chart,As séries cronológicas baseadas em são necessárias para criar um gráfico de dashboard, -Time {0} must be in format: {1},A hora {0} deve estar no formato: {1}, -"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Para configurar a repetição automática, ative "Permitir repetição automática" de {0}.", -To enable it follow the instructions in the following link: {0},"Para habilitá-lo, siga as instruções no seguinte link: {0}", -"To use Google Calendar, enable {0}.","Para usar o Google Agenda, ative {0}.", -"To use Google Contacts, enable {0}.","Para usar os Contatos do Google, ative {0}.", -"To use Google Drive, enable {0}.","Para usar o Google Drive, ative {0}.", -Today's Events,Eventos de hoje, -Toggle Public/Private,Alternar Público / Privado, -Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Rastreia marcos no ciclo de vida de um documento se ele passar por vários estágios., -Tree structures are implemented using Nested Set,As estruturas de árvore são implementadas usando o Conjunto Aninhado, -Trigger Primary Action,Ação principal do acionador, -URL for documentation or help,URL para documentação ou ajuda, -URL must start with 'http://' or 'https://',O URL deve começar com "http: //" ou "https: //", -Unchanged,Inalterado, -Unpin,Soltar, -Untitled Column,Coluna sem título, -Untranslated,Não traduzido, -Upcoming Events,próximos eventos, -Update Existing Records,Atualizar registros existentes, -Update Type,Tipo de atualização, -Updated To A New Version 🎉,Atualizado para uma nova versão 🎉, -"Updating {0} of {1}, {2}","Atualizando {0} de {1}, {2}", -Upload file,Subir arquivo, -Upload {0} files,Carregar {0} arquivos, -Uploaded To Google Drive,Carregado no Google Drive, -Uploaded successfully,Carregado com sucesso, -Uploading {0} of {1},Fazendo upload de {0} de {1}, -Use SSL for Outgoing,Use SSL para saída, -Use Same Name,Usar o mesmo nome, -Used For Google Maps Integration.,Usado para integração com o Google Maps., -User ID Property,Propriedade de ID do usuário, -User Profile,Perfil de Usuário, -User Settings,Configurações do Usuário, -User does not exist,Usuário não existe, -User {0} has requested for data deletion,O usuário {0} solicitou a exclusão de dados, -Users assigned to the reference document will get points.,Os usuários atribuídos ao documento de referência receberão pontos., -Value must be one of {0},O valor deve ser um dos {0}, -Value {0} missing for {1},Valor {0} ausente para {1}, -Verification,Verificação, -Verification Code,Código de verificação, -Verification code email not sent. Please contact Administrator.,E-mail do código de verificação não enviado. Entre em contato com o administrador., -Verified,Verificado, -Verifier,Verificador, -View Full Log,Visualizar log completo, -"View Log of all print, download and export events","Visualizar o log de todos os eventos de impressão, download e exportação", -Visit Web Page,Visitar página da Web, -Webhook Secret,Segredo do Webhook, -Webhook Security,Segurança Webhook, -Webhook Trigger,Gatilho Webhook, -Weekly Long,Semanalmente Longo, -"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.","Quando ativado, isso permitirá que os convidados façam upload de arquivos para o seu aplicativo. Você pode habilitá-lo se desejar coletar arquivos do usuário sem que eles façam login, por exemplo, no formulário da Web de pedidos de emprego.", -Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Executará trabalhos agendados apenas uma vez por dia para sites inativos. O padrão é 4 dias, se definido como 0.", -Workflow Status,Status do fluxo de trabalho, -You are not allowed to export {} doctype,Você não tem permissão para exportar {} doctype, -You can try changing the filters of your report.,Você pode tentar alterar os filtros do seu relatório., -You do not have permissions to cancel all linked documents.,Você não tem permissão para cancelar todos os documentos vinculados., -You need to create these first: ,Você precisa criar estes primeiro:, -You need to enable JavaScript for your app to work.,Você precisa habilitar o JavaScript para que seu aplicativo funcione., -You need to install pycups to use this feature!,Você precisa instalar pycups para usar este recurso!, -Your Target,Seu objetivo, -"browse,","Squeaky toy,", -cancelled this document {0},cancelou este documento {0}, -changed value of {0} {1},valor alterado de {0} {1}, -changed values for {0} {1},valores alterados para {0} {1}, -choose an,escolha um, -empty,vazio, -of,do, -or attach a,ou anexar um, -submitted this document {0},enviou este documento {0}, -"tag name..., e.g. #tag","nome da tag ..., por exemplo, #tag", -uploaded file,arquivo enviado, -via Data Import,via importação de dados, -{0} Google Calendar Events synced.,{0} Eventos do Google Agenda sincronizados., -{0} Google Contacts synced.,{0} Contatos do Google sincronizados., -{0} are mandatory fields,{0} são campos obrigatórios, -{0} are required,{0} são obrigatórios, -{0} assigned a new task {1} {2} to you,{0} atribuiu uma nova tarefa {1} {2} a você, -{0} gained {1} point for {2} {3},{0} ganhou {1} ponto por {2} {3}, -{0} gained {1} points for {2} {3},{0} ganhou {1} pontos por {2} {3}, -{0} has no versions tracked.,{0} não possui versões controladas., -{0} is not a valid report format. Report format should one of the following {1},{0} não é um formato de relatório válido. O formato do relatório deve ser um dos seguintes {1}, -{0} mentioned you in a comment in {1} {2},{0} fez referência a você em um comentário em {1} {2}, -{0} of {1} ({2} rows with children),{0} de {1} ({2} linhas com crianças), -{0} records will be exported,{0} registros serão exportados, -{0} shared a document {1} {2} with you,{0} compartilhou um documento {1} {2} com você, -{0} should not be same as {1},{0} não deve ser o mesmo que {1}, -{0} translations pending,{0} traduções pendentes, -{0} {1} is linked with the following submitted documents: {2},{0} {1} está vinculado aos seguintes documentos enviados: {2}, -"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: falha ao anexar novo documento recorrente. Para ativar o anexo de documento no e-mail de notificação de repetição automática, ative {1} em Configurações de impressão", -{0}: Fieldname cannot be one of {1},{0}: o nome do campo não pode ser um dos {1}, -{} Complete,{} Completo, -← Back to upload files,← Voltar para upload de arquivos, -Activity,Atividade, -Add / Manage Email Accounts.,Adicionar / Gerenciar Contas de Email., -Add Child,Adicionar Sub-item, -Add Multiple,Adicionar Múltiplos, -Add Participants,Adicione participantes, -Added {0} ({1}),Adicionado {0} ({1}), -Address Line 1,Endereço, -Addresses,Endereços, -All,Todos, -Brand,Marca, -Browse,Pesquisar, -Cancelled,Cancelado, -Chart,Gráfico, -Close,Fechar, -Communication,Comunicação, -Compact Item Print,Imprimir item no formato compacto, -Company,Empresa, -Complete,Concluído, -Completed,Concluído, -Continue,Continuar, -Country,País, -Creating {0},Criando {0}, -Currency,Moeda, -Customize,Personalizar, -Daily,Diário, -Date,Data, -Dear,Caro, -Default,Padrão, -Delete,Excluir, -Description,Descrição, -Designation,Designação, -Disabled,Desativado, -Doctype,Doctype, -Download Template,Baixar Modelo, -Dr,Dr, -Due Date,Data de Vencimento, -Duplicate,Duplicar, -Edit Profile,Editar Perfil, -Email,Email, -End Time,Horário de Término, -Enter Value,Digite o Valor, -Entity Type,Tipo de entidade, -Error,Erro, -Expired,Expirado, -Export,Exportar, -Export not allowed. You need {0} role to export.,Exportação não é permitida. Você precisa da função {0} para exportar., -Fetching...,Buscando ..., -Field,Campo, -File Manager,Gestor de Arquivos, -Filters,Filtros, -Get Items,Obter Itens, -Goal,Meta, -Group,Grupo, -Group Node,Grupo de Nós, -Help,Ajuda, -Help Article,Artigo de Ajuda, -Home,Início, -Import Data from CSV / Excel files.,Importar dados de arquivos CSV / Excel., -In Progress,Em progresso, -Intermediate,Intermediário, -Invite as User,Convidar como Usuário, -"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Parece que há um problema com a configuração de distribuição do servidor. Em caso de falha, o valor será reembolsado em sua conta.", -Loading...,Carregando..., -Location,Localização, -Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Parece que alguém lhe enviou a um URL incompleta. Por favor, pedir-lhes para olhar para ele.", -Master,Cadastro, -Message,mensagem, -Missing Values Required,Faltando valores obrigatórios, -Mobile No,Telefone Celular, -Month,Mês, -Name,Nome, -Newsletter,Newsletter, -Not Allowed,Não Desejados, -Note,Nota, -Offline,Offline, -Open,Abrir, -Page {0} of {1},Página {0} de {1}, -Pay,Pagar, -Pending,Pendente, -Phone,Telefone, -Please click on the following link to set your new password,"Por favor, clique no link a seguir para definir a sua nova senha", -Please select another payment method. Stripe does not support transactions in currency '{0}',Selecione outro método de pagamento. Stripe não suporta transações em moeda '{0}', -Please specify,"Por favor, especifique", -Printing,Impressão, -Priority,Prioridade, -Project,Projeto, -Quarterly,Trimestralmente, -Queued,Em Fila, -Quick Entry,Entrada Rápida, -Reason,Motivo, -Refreshing,Atualizando, -Rename,Renomear, -Reset,Redefinir, -Review,Reveja, -Room,Quarto, -Room Type,Tipo de Quarto, -Save,Salvar, -Search results for,Buscar resultados para, -Select All,Selecionar Tudo, -Send,Enviar, -Sending,Enviando, -Server Error,Erro de Servidor, -Set,Definir, -Setup,Configuração, -Setup Wizard,Assistente de Configuração, -Size,Tamanho, -Sr,Sr, -Start,Iniciar, -Start Time,Horário de Início, -Status,Status, -Submitted,Enviado, -Tag,Tag, -Template,Modelo, -Thursday,Quinta-feira, -Title,Título, -Total,Total, -Totals,Totais, -Tuesday,Terça-feira, -Type,Tipo, -Update,Atualizar, -User {0} is disabled,Usuário {0} está desativado, -Users and Permissions,Usuários e Permissões, -Warehouse,Armazém, -Welcome to {0},Bem-vindo ao {0}, -Year,Ano, -Yearly,Anual, -You,Você, -You can also copy-paste this link in your browser,Você também pode copiar e colar este link no seu navegador, -and,e, -{0} Name,{0} Nome, -{0} is required,{0} é necessário, -ALL,Tudo, -Attach File,Anexar Arquivo, -Barcode,Código de barras, -Beginning with,Começando com, -Bold,Negrito, -CANCELLED,CANCELADO, -Calendar,Calendário, -Center,Centro, -Clear,claro, -Comment,Comente, -Comments,Comentários, -DRAFT,Rascunho, -Dashboard,Dashboard, -DocType,DocType, -Download,Baixar, -EMail,Email, -Edit in Full Page,Editar em página completa, -Email Inbox,Caixa de Entrada, -File,Arquivo, -Forward,Frente, -Icon,Ícone, -In,Em, -Inbox,Caixa de Entrada, -Insert New Records,Inserir novos registros, -JavaScript,Javascript, -LDAP Settings,Configurações LDAP, -Left,Saiu, -Like,Parecido, -Link,Link, -Logged in,Logado, -New,Novo, -Not Found,Não encontrado, -Not Like,Não Parecido, -Notify by Email,Notificar por email, -Now,Agora, -Off,Desligado, -One of,Um dos, -Page,Página, -Print,Impressão, -Reference Name,Nome de referencia, -Refresh,Atualizar, -Repeat,Repetir, -Right,Direita, -Roles HTML,Funções HTML, -Scheduled To Send,Programado para enviar, -Search Results for ,Resultados da busca por, -Send Notification To,Enviar Notificação para, -Success,Sucesso, -Tags,Tags, -Time,Tempo, -Updated Successfully,Atualizado com sucesso, -Upload,Enviar, -User ,Usuário , -Value,Valor, -Web Link,Link da web, -Your Email Address,Seu endereço de email, -Desktop,Área de trabalho, -Usage Info,Informações de Uso, -Download Backups,Download de Backups, -Recorder,Gravador, -Role Permissions Manager,Gestor de Permissões por Função, -Translation Tool,Ferramenta de tradução, -Awaiting password,Aguardando Senha, -Current status,Status atual, -Download template,Baixar Modelo, -Edit in full page,Editar em página completa, -Email Id,Email ID, -Email address,Endereço de Email, -Ends on,Termina em, -Half-yearly,Semestralmente, -Hidden,Escondido, -Javascript,Javascript, -Ldap settings,Configurações LDAP, -Mobile number,Telefone Celular, -Mx,Mx, -No,Não, -Not found,Não encontrado, -Notes:,Notas:, -Notify by email,Notificar por Email, -Permitted Documents For User,Documentos Permitidos para Usuário, -Reference Docname,Nome do Documento de Referência, -Reference Doctype,DocType de Referência, -Reference name,Nome de Referência, -Roles Html,Funções HTML, -Row #,Linha #, -Scheduled to send,Programado para enviar, -Select Doctype,Selecione o DocType, -Send Email for Successful backup,Enviar email para backup bem-sucedido, -Sign up,inscrever-se, -Time format,Formato da hora, -Upload failed,Upload falhou, -User Id,ID de Usuário, -Yes,sim, -Your email address,Seu endereço de email, -added,adicionado, -added {0},Adicionado {0}, -barcode,Código de barras, -beginning with,Começando com, -blue,azul, -bold,negrito, -book,livro, -calendar,calendário, -certificate,certificado, -check,Verificar, -clear,limpar, -comment,Comentário, -comments,comentários, -created,Criado, -danger,Perigo, -dashboard,dashboard, -download,Baixar, -edit,editar, -email inbox,Caixa de Entrada, -file,arquivo, -filter,filtro, -flag,bandeira, -font,fonte, -forward,para a frente, -green,verde, -home,casa, -icon,ícone, -inbox,Caixa de Entrada, -like,Parecido, -link,Link, -list,Lista, -lock,trancar, -logged in,Logado, -message,Mensagem, -module,módulo, -move,mover, -music,música, -new,Novo, -now,agora, -off,fora, -one of,um dos, -orange,laranja, -page,página, -print,imprimir, -purple,roxo, -random,aleatório, -red,vermelho, -refresh,atualizar, -remove,remover, -response,resposta, -search,procurar, -share,ação, -stop,Parar, -success,sucesso, -tag,tag, -tags,tags, -tasks,tarefas, -time,tempo, -trash,lixo, -upload,upload, -user,usuário, -value,valor, -web link,link da Web, -yellow,amarelo, -Not permitted,Não permitido, -Add Chart to Dashboard,Adicionar gráfico ao Dashboard, -Add to Dashboard,Adicionar ao Dashboard, -Google Translation,Tradução do Google, -Important,Importante, -No Filters Set,Nenhum conjunto de filtros, -No Records Created,Nenhum registro criado, -Please Set Chart,Defina o gráfico, -Please create chart first,Crie primeiro o gráfico, -"Report has no data, please modify the filters or change the Report Name",O relatório não possui dados. Modifique os filtros ou altere o Nome do relatório., -Select Dashboard,Selecionar Dashboard, -Y Field,Campo Y, -You need to be in developer mode to edit this document,Você precisa estar no modo de desenvolvedor para editar este documento, -Cards,Postais, -Community Contribution,Contribuição da comunidade, -Count Filter,Filtro de contagem, -Dashboard Chart Field,Campo do Gráfico do Dashboard, -Desk Card,Desk Card, -Desk Chart,Desk Chart, -Desk Page,Página da mesa, -Desk Shortcut,Atalho de mesa, -Developer Mode Only,Somente modo desenvolvedor, -Disable User Customization,Desativar personalização do usuário, -For example: {} Open,Por exemplo: {} Abra, -Link Cards,Cartões de ligação, -Link To,Link para, -Onboarding,Onboarding, -Percentage,Percentagem, -Pie,Torta, -Pin To Bottom,Fixar na parte inferior, -Pin To Top,Fixar na parte superior, -Restrict to Domain,Restringir ao domínio, -Shortcuts,Atalhos, -X Field,Campo X, -Y Axis,Eixo Y, -workspace,área de trabalho, -Setup > User,Configuração> Usuário, -Setup > Customize Form,Configuração> Personalizar formulário, -Setup > User Permissions,Configuração> Permissões do Usuário, -"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.","Erro ao conectar ao aplicativo da bandeja QZ ...

Você precisa ter o aplicativo QZ Tray instalado e em execução, para usar o recurso Raw Print.

Clique aqui para baixar e instalar a bandeja QZ .
Clique aqui para saber mais sobre a impressão em bruto .", -No email account associated with the User. Please add an account under User > Email Inbox.,Nenhuma conta de email associada ao usuário. Adicione uma conta em Usuário> Caixa de entrada de email., -"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10).", -No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenhum modelo de endereço padrão encontrado. Crie um novo em Configuração> Impressão e identidade visual> Modelo de endereço., -Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de email padrão em Configuração> Email> Conta de email, -Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail não configurada. Crie uma nova conta de email em Configuração> Email> Conta de email, -Attach file,Anexar Arquivo, -Contribution Status,Status de contribuição, -Contribution Document Name,Nome do documento de contribuição, -Extends,Estende, -Extends Another Page,Estende outra página, -Please select target language for translation,Selecione o idioma de destino para a tradução, -Select Language,Selecione o idioma, -Confirm Translations,Confirme as traduções, -Contributed Translations,Contribuições de traduções, -Show Tags,Mostrar Tags, -Do not have permission to access {0} bucket.,Não tem permissão para acessar o intervalo {0}., -Allow document creation via Email,Permitir a criação de documentos por e-mail, -Sender Field,Campo Remetente, -Logout All Sessions on Password Reset,Sair de todas as sessões ao redefinir a senha, -Logout From All Devices After Changing Password,Saia de todos os dispositivos após alterar a senha, -Send Notifications For Documents Followed By Me,Enviar notificações para documentos seguidos por mim, -Send Notifications For Email Threads,Enviar notificações para tópicos de email, -Bypass Restricted IP Address Check If Two Factor Auth Enabled,"Ignorar endereço IP restrito, verificar se a autenticação de dois fatores estiver habilitada", -Reset LDAP Password,Redefinir senha LDAP, -Confirm New Password,Confirme a nova senha, -Logout All Sessions,Sair de todas as sessões, -Passwords do not match!,As senhas não coincidem!, -Dashboard Manager,Dashboard Manager, -Dashboard Settings,Configurações do Dashboard, -Chart Configuration,Configuração de Gráfico, -No Permitted Charts on this Dashboard,Gráficos não permitidos neste Dashboard, -No Permitted Charts,Gráficos não permitidos, -Reset Chart,Reiniciar gráfico, -via {0},via {0}, -{0} is not a valid Phone Number,{0} não é um número de telefone válido, -Failed Transactions,Transações com falha, -Value for field {0} is too long in {1}. Length should be lesser than {2} characters,O valor do campo {0} é muito longo em {1}. O comprimento deve ser menor que {2} caracteres, -Data Too Long,Dados muito longos, -via Notification,via notificação, -Log in to access this page.,Faça login para acessar esta página., -Report Document Error,Reportar erro de documento, -{0} is an invalid Data field.,{0} é um campo de dados inválido., -Only Options allowed for Data field are:,Apenas as opções permitidas para o campo de dados são:, -Select a valid Subject field for creating documents from Email,Selecione um campo de Assunto válido para criar documentos de e-mail, -"Subject Field type should be Data, Text, Long Text, Small Text, Text Editor","O tipo de campo de assunto deve ser Dados, Texto, Texto Longo, Texto Pequeno, Editor de Texto", -Select a valid Sender Field for creating documents from Email,Selecione um campo de remetente válido para criar documentos de e-mail, -Sender Field should have Email in options,O campo do remetente deve ter e-mail nas opções, -Password changed successfully.,Senha alterada com sucesso., -Failed to change password.,Falha ao alterar a senha., -No Entry for the User {0} found within LDAP!,Nenhuma entrada para o usuário {0} encontrada no LDAP!, -No LDAP User found for email: {0},Nenhum usuário LDAP encontrado para e-mail: {0}, -Prepared Report User,Usuário de relatório preparado, -Scheduler Event,Evento Scheduler, -Select Event Type,Selecione o tipo de evento, -Schedule Script,Script de programação, -Duration,Duração, -Donut,Rosquinha, -Custom Options,Opções Personalizadas, -"Ex: ""colors"": [""#d1d8dd"", ""#ff5858""]","Ex: "cores": ["# d1d8dd", "# ff5858"]", -Confirmation Email Template,Modelo de email de confirmação, -Welcome Email Template,Modelo de email de boas-vindas, -Schedule Send,Agendar envio, -Do you really want to send this email newsletter?,Tem certeza de que deseja enviar este boletim informativo por e-mail?, -Advanced Settings,Configurações avançadas, -Disable Comments,Desativar comentários, -Comments on this blog post will be disabled if checked.,Os comentários nesta postagem do blog serão desabilitados se marcados., -CSS Class,Classe CSS, -Full Width,Largura completa, -Page Builder,Construtor de Página, -Page Building Blocks,Blocos de construção de página, -Header and Breadcrumbs,Cabeçalho e breadcrumbs, -Add Custom Tags,Adicionar tags personalizadas, -Web Page Block,Bloco de página da web, -Web Template,Web Template, -Edit Values,Editar Valores, -Web Template Values,Valores de modelo da web, -Add Container,Adicionar recipiente, -Web Page View,Visualização da página da web, -Path,Caminho, -Referrer,Referrer, -Browser,Navegador, -Browser Version,Versão do navegador, -Web Template Field,Campo de modelo da web, -Section,Seção, -Hide,ocultar, -Enable In App Website Tracking,Habilitar acompanhamento de sites no aplicativo, -Enable Google Indexing,Ativar indexação do Google, -"To use Google Indexing, enable Google Settings.","Para usar a indexação do Google, ative as configurações do Google .", -Authorize API Indexing Access,Autorizar acesso de indexação de API, -Indexing Refresh Token,Token de atualização de indexação, -Indexing Authorization Code,Código de autorização de indexação, -Theme Configuration,Configuração do Tema, -Font Properties,Propriedades da fonte, -Button Rounded Corners,Botão Cantos Arredondados, -Button Shadows,Sombras de botão, -Button Gradients,Gradientes de botão, -Light Color,Cor clara, -Stylesheet,Folha de estilo, -Custom SCSS,SCSS personalizado, -Navbar,Navbar, -Source Message,Mensagem Fonte, -Translated Message,Mensagem Traduzida, -Verified By,Verificado Por, -Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,O uso deste console pode permitir que invasores se façam passar por você e roubem suas informações. Não insira nem cole códigos que você não entende., -{0} m,{0} m, -{0} h,{0} h, -{0} d,{0} d, -{0} w,{0} w, -{0} M,{0} mi, -{0} y,{0} a, -yesterday,ontem, -{0} years ago,{0} anos atrás, -New Chart,Novo Gráfico, -New Shortcut,Novo Atalho, -Edit Chart,Editar gráfico, -Edit Shortcut,Editar atalho, -Couldn't Load Desk,Não foi possível carregar a mesa, -"Something went wrong while loading Desk. Please relaod the page. If the problem persists, contact the Administrator","Ocorreu um erro ao carregar o Desk. Por favor, relaod a página . Se o problema persistir, entre em contato com o Administrador", -Customize Workspace,Personalize o Espaço de Trabalho, -Customizations Saved Successfully,Personalizações salvas com sucesso, -Something went wrong while saving customizations,Algo deu errado ao salvar as personalizações, -{} Dashboard,{} Dashboard, -No changes in document,Sem alterações no documento, -by Role,por papel, -Document is only editable by users with role,O documento só pode ser editado por usuários com função, -{0}: Other permission rules may also apply,{0}: Outras regras de permissão também podem ser aplicadas, -{0} Page Views,{0} page views, -Expand,Expandir, -Collapse,Colapso, -"Invalid Bearer token, please provide a valid access token with prefix 'Bearer'.","Token de portador inválido, forneça um token de acesso válido com o prefixo 'Portador'.", -"Failed to decode token, please provide a valid base64-encoded token.","Falha ao decodificar o token, forneça um token codificado em base64 válido.", -"Invalid token, please provide a valid token with prefix 'Basic' or 'Token'.","Token inválido, forneça um token válido com o prefixo 'Básico' ou 'Token'.", -{0} is not a valid Name,{0} não é um nome válido, -Your system is being updated. Please refresh again after a few moments.,Seu sistema está sendo atualizado. Atualize novamente após alguns momentos., -{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: O registro enviado não pode ser excluído. Você deve {2} cancelar {3} primeiro., -Invalid naming series (. missing) for {0},Série de nomenclatura inválida (. Ausente) para {0}, -Error has occurred in {0},Ocorreu um erro em {0}, -Status Updated,Status Atualizado, -You can also copy-paste this {0} to your browser,Você também pode copiar e colar isto {0} no seu navegador, -Enabled scheduled execution for script {0},Execução programada ativada para o script {0}, -Scheduled execution for script {0} has updated,A execução agendada para o script {0} foi atualizada, -The Link specified has either been used before or Invalid,O link especificado já foi usado antes ou é inválido, -Options for {0} must be set before setting the default value.,As opções para {0} devem ser definidas antes de definir o valor padrão., -Default value for {0} must be in the list of options.,O valor padrão para {0} deve estar na lista de opções., -Google Indexing has been configured.,A indexação do Google foi configurada., -Allow API Indexing Access,Permitir acesso de indexação de API, -Allow Google Indexing Access,Permitir acesso de indexação do Google, -Custom Documents,Documentos Personalizados, -Could not save customization,Não foi possível salvar a personalização, -Transgender,Transgênero, -Genderqueer,Genderqueer, -Non-Conforming,Não conforme, -Prefer not to say,Prefiro não dizer, -Is Billing Contact,É contato de cobrança, -Address And Contacts,Endereços e Contatos, -Lead Conversion Time,Lead Conversion Time, -Due Date Based On,Data de vencimento baseada em, -Phone Number,Número de telefone, -Linked Documents,Documentos vinculados, -Account SID,SID da conta, -Steps,Passos, -email,email, -Component,Componente, -Subtitle,Subtítulo, -Global Defaults,Padrões Gerais, -Prefix,Prefixo, -Is Public,É público, -This chart will be available to all Users if this is set,Este gráfico estará disponível para todos os usuários se estiver definido, -Number Card,Cartão de Número, -Function,Função, -Minimum,Mínimo, -Maximum,Máximo, -This card will be available to all Users if this is set,Este cartão estará disponível para todos os usuários se estiver definido, -Stats,Estatísticas, -Show Percentage Stats,Mostrar estatísticas percentuais, -Stats Time Interval,Intervalo de tempo das estatísticas, -Show percentage difference according to this time interval,Mostra a diferença percentual de acordo com este intervalo de tempo, -Filters Section,Seção de Filtros, -Number Card Link,Número do link do cartão, -Card,Cartão, -API Access,Acesso API, -Access Key Secret,Segredo da chave de acesso, -S3 Bucket Details,Detalhes do balde S3, -Bucket Name,Nome do intervalo, -Backup Details,Detalhes de backup, -Backup Files,Arquivos de backup, -Backup public and private files along with the database.,Faça backup de arquivos públicos e privados junto com o banco de dados., -Set to 0 for no limit on the number of backups taken,Defina como 0 para não haver limite no número de backups feitos, -Meta Description,Meta Descrição, -Meta Image,Meta Imagem, -Google Snippet Preview,Visualização de snippet do Google, -This is an example Google SERP Preview.,Este é um exemplo de visualização do Google SERP., -Add Gray Background,Adicionar fundo cinza, -Hide Block,Esconder o Bloco, -This Week,Esta semana, -This Month,Este mês, -This Quarter,Este Trimestre, -This Year,Este ano, -All Time,Tempo todo, -Select From Date,Selecione a partir da data, -since yesterday,desde ontem, -since last week,desde a semana passada, -since last month,desde o último mês, -since last year,desde o ano passado, -Show,mostrar, -New Number Card,Novo cartão de número, -Your Shortcuts,Seus Atalhos, -You haven't added any Dashboard Charts or Number Cards yet.,Você ainda não adicionou nenhum gráfico de Dashboard ou cartão numérico., -Click On Customize to add your first widget,Clique em Personalizar para adicionar seu primeiro widget, -Are you sure you want to reset all customizations?,Tem certeza de que deseja redefinir todas as personalizações?, -"Couldn't save, please check the data you have entered","Não foi possível salvar, verifique os dados inseridos", -Validation Error,erro de validação, -"You can only upload JPG, PNG, PDF, or Microsoft documents.","Você só pode fazer upload de documentos JPG, PNG, PDF ou Microsoft.", -Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data.,Revertendo comprimento para {0} para '{1}' em '{2}'. Definir o comprimento como {3} causará o truncamento dos dados., -'{0}' not allowed for type {1} in row {2},'{0}' não permitido para o tipo {1} na linha {2}, -Option {0} for field {1} is not a child table,A opção {0} para o campo {1} não é uma tabela filha, -Invalid Option,Opção Inválida, -Request Body consists of an invalid JSON structure,O corpo da solicitação consiste em uma estrutura JSON inválida, -Invalid JSON,JSON inválido, -Party GSTIN,Festa GSTIN, -GST State,Estado GST, -Andaman and Nicobar Islands,Ilhas Andaman e Nicobar, -Andhra Pradesh,Andhra Pradesh, -Arunachal Pradesh,Arunachal Pradesh, -Assam,Assam, -Bihar,Bihar, -Chandigarh,Chandigarh, -Chhattisgarh,Chhattisgarh, -Dadra and Nagar Haveli,Dadra e Nagar Haveli, -Daman and Diu,Damão e Diu, -Delhi,Délhi, -Goa,Goa, -Gujarat,Gujarat, -Haryana,Haryana, -Himachal Pradesh,Himachal Pradesh, -Jammu and Kashmir,Jammu e Kashmir, -Jharkhand,Jharkhand, -Karnataka,Karnataka, -Kerala,Kerala, -Lakshadweep Islands,Ilhas Lakshadweep, -Madhya Pradesh,Madhya Pradesh, -Maharashtra,Maharashtra, -Manipur,Manipur, -Meghalaya,Meghalaya, -Mizoram,Mizoram, -Nagaland,Nagaland, -Odisha,Odisha, -Other Territory,Outro Território, -Pondicherry,Pondicherry, -Punjab,Punjab, -Rajasthan,Rajasthan, -Sikkim,Sikkim, -Tamil Nadu,Tamil Nadu, -Telangana,Telangana, -Tripura,Tripura, -Uttar Pradesh,Uttar Pradesh, -Uttarakhand,Uttarakhand, -West Bengal,Bengala Ocidental, -GST State Number,Número do estado GST, -Import from Google Sheets,Importar do Planilhas Google, -Must be a publicly accessible Google Sheets URL,Deve ser um URL de planilhas do Google acessível publicamente, -Refresh Google Sheet,Atualizar planilha do Google, -Import File Errors and Warnings,Erros e avisos de importação de arquivos, -"Successfully imported {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again.","Importou com êxito {0} registros de {1}. Clique em Exportar Errored Rows, corrija os erros e importe novamente.", -"Successfully imported {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again.","Importado com sucesso {0} registro de {1}. Clique em Exportar Errored Rows, corrija os erros e importe novamente.", -"Successfully updated {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again.","Atualizado com êxito {0} registros de {1}. Clique em Exportar Errored Rows, corrija os erros e importe novamente.", -"Successfully updated {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again.","Atualizado com sucesso {0} registro de {1}. Clique em Exportar Errored Rows, corrija os erros e importe novamente.", -Data Import Legacy,Legado de importação de dados, -Documents restored successfully,Documentos restaurados com sucesso, -Documents that were already restored,Documentos que já foram restaurados, -Documents that failed to restore,Documentos que não foram restaurados, -Document Restoration Summary,Resumo de restauração de documento, -Hide Days,Ocultar dias, -Hide Seconds,Ocultar segundos, -Hide Border,Ocultar borda, -Index Web Pages for Search,Índice de páginas da web para pesquisa, -Action / Route,Ação / Rota, -Document Naming Rule,Regra de Nomenclatura de Documento, -Rule Conditions,Condições da regra, -Digits,Dígitos, -Example: 00001,Exemplo: 00001, -Counter,Contador, -Document Naming Rule Condition,Condição de regra de nomenclatura de documento, -Installed Application,Aplicativo Instalado, -Application Name,Nome da Aplicação, -Application Version,Versão do aplicativo, -Git Branch,Git Branch, -Installed Applications,Aplicativos Instalados, -Navbar Item,Item Navbar, -Item Label,Etiqueta do item, -Item Type,Tipo de item, -Separator,Separador, -Navbar Settings,Configurações da barra de navegação, -Application Logo,Logo do aplicativo, -Logo Width,Largura do logotipo, -Dropdowns,Dropdowns, -Settings Dropdown,Lista suspensa de configurações, -Help Dropdown,Ajuda suspensa, -Query / Script,Consulta / Script, -"Filters will be accessible via filters.

Send output as result = [result], or for old style data = [columns], [result]","Os filtros estarão acessíveis por meio de filters .

Envie a saída como result = [result] ou para data = [columns], [result] estilo antigo data = [columns], [result]", -Client Code,Código do cliente, -Report Column,Coluna de Relatório, -Report Filter,Filtro de Relatório, -Wildcard Filter,Filtro Wildcard, -Will add "%" before and after the query,Irá adicionar "%" antes e depois da consulta, -Route: Example "/desk",Rota: Exemplo "/ desk", -Enable Onboarding,Habilitar Onboarding, -Password Reset Link Generation Limit,Limite de geração de link de redefinição de senha, -Hourly rate limit for generating password reset links,Limite de taxa por hora para gerar links de redefinição de senha, -Send document Web View link in email,Enviar link no email para visualizar o documento online, -Enable Auto-deletion of Prepared Reports,Habilitar exclusão automática de relatórios preparados, -Prepared Report Expiry Period (Days),Período de expiração do relatório preparado (dias), -System will automatically delete Prepared Reports after these many days since creation,O sistema excluirá automaticamente os relatórios preparados após esses muitos dias desde a criação, -Package Document Type,Tipo de Documento de Pacote, -Include Attachments,Incluir Anexos, -Overwrite,Sobrescrever, -Package Publish Target,Alvo de publicação de pacote, -Site URL,URL do site, -Package Publish Tool,Ferramenta de publicação de pacotes, -Click on the row for accessing filters.,Clique na linha para acessar os filtros., -Sites,Sites, -Last Deployed On,Última implantação em, -Console Log,Log do console, -"Set Default Options for all charts on this Dashboard (Ex: ""colors"": [""#d1d8dd"", ""#ff5858""])","Defina as opções padrão para todos os gráficos neste Dashboard (Ex: "cores": ["# d1d8dd", "# ff5858"])", -Use Report Chart,Usar gráfico de relatório, -Heatmap,Mapa de calor, -Dynamic Filters,Filtros Dinâmicos, -Dynamic Filters JSON,Filtros dinâmicos JSON, -Set Dynamic Filters,Definir Filtros Dinâmicos, -Click to Set Dynamic Filters,Clique para definir filtros dinâmicos, -Hide Custom DocTypes and Reports,Ocultar tipos de documentos e relatórios personalizados, -Checking this will hide custom doctypes and reports cards in Links section,Marcar isto irá esconder doctypes personalizados e cartões de relatórios na seção Links, -DocType View,Visualização DocType, -Which view of the associated DocType should this shortcut take you to?,Para qual visualização do DocType associado esse atalho deve levar você?, -List View Settings,Configurações de visualização de lista, -Maximum Number of Fields,Número Máximo de Campos, -Module Onboarding,Módulo Onboarding, -System managers are allowed by default,Gerentes de sistema são permitidos por padrão, -Documentation URL,URL de documentação, -Is Complete,Está completo, -Alert,Alerta, -Document Link,Link do Documento, -Attached File,Arquivo anexo, -Attachment Link,Link de Anexo, -Open Reference Document,Documento de Referência Aberto, -Custom Configuration,Configuração Personalizada, -Filters Configuration,Configuração de Filtros, -Dynamic Filters Section,Seção de Filtros Dinâmicos, -Please create Card first,"Por favor, crie o cartão primeiro", -Onboarding Permission,Permissão de integração, -Onboarding Step,Etapa de integração, -Is Mandatory,É mandatório, -Is Skipped,É pulado, -Create Entry,Criar entrada, -Update Settings,Atualizar configurações, -Show Form Tour,Show Form Tour, -View Report,Ver relatório, -Go to Page,Vá para página, -Watch Video,Assistir vídeo, -Show Full Form?,Mostrar formulário completo?, -Show full form instead of a quick entry modal,Mostrar o formulário completo em vez de um modal de entrada rápida, -Report Reference Doctype,Report Reference Doctype, -Report Description,Descrição do relatório, -This will be shown to the user in a dialog after routing to the report,Isso será mostrado ao usuário em uma caixa de diálogo após o roteamento para o relatório, -Example: #Tree/Account,Exemplo: # árvore / conta, -Callback Title,Título de retorno, -Callback Message,Mensagem de retorno, -This will be shown in a modal after routing,Isso será mostrado em um modal após o roteamento, -Validate Field,Validar Campo, -Value to Validate,Valor para Validar, -Use % for any non empty value.,Use% para qualquer valor não vazio., -Video URL,URL do vídeo, -Onboarding Step Map,Mapa de etapas de integração, -Step,Degrau, -System Console,Console do sistema, -Console,Console, -To print output use log(text),"Para imprimir a saída, use o log(text)", -Commit,Comprometer, -Execute Console script,Executar script de console, -Execute,Executar, -Create Contacts from Incoming Emails,Criar contatos de e-mails recebidos, -Inbox User,Usuário da caixa de entrada, -Disabled Auto Reply,Resposta automática desativada, -Schedule Sending,Agendar Envio, -Message (Markdown),Mensagem (Markdown), -Message (HTML),Mensagem (HTML), -Send Attachments,Enviar anexos, -Testing,Testando, -System Notification,Notificação do sistema, -WhatsApp,Whatsapp, -Twilio Number,Número Twilio, -"To use WhatsApp for Business, initialize Twilio Settings.","Para usar o WhatsApp for Business, inicialize as configurações do Twilio .", -"To use Slack Channel, add a Slack Webhook URL.","Para usar o Slack Channel, adicione um URL do Slack Webhook .", -Send System Notification,Enviar Notificação do Sistema, -"If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar.","Se ativada, a notificação aparecerá na lista suspensa de notificações no canto superior direito da barra de navegação.", -Send To All Assignees,Enviar para todos os cessionários, -Receiver By Document Field,Receptor por campo de documento, -Receiver By Role,Receptor por função, -Child Table,Mesa Infantil, -Remote Value Filters,Filtros de valor remoto, -API Key of the user(Event Subscriber) on the producer site,Chave API do usuário (Assinante do Evento) no site do produtor, -API Secret of the user(Event Subscriber) on the producer site,Segredo API do usuário (Assinante do Evento) no site do produtor, -Paytm Settings,Configurações de Paytm, -Merchant Key,Chave do Comerciante, -Staging,Staging, -Industry Type ID,ID do tipo de indústria, -See https://docs.aws.amazon.com/general/latest/gr/s3.html for details.,Consulte https://docs.aws.amazon.com/general/latest/gr/s3.html para obter detalhes., -af-south-1,af-south-1, -ap-east-1,ap-east-1, -eu-south-1,eu-sul-1, -me-south-1,me-south-1, -Twilio Number Group,Grupo de números Twilio, -Twilio Settings,Configurações do Twilio, -Auth Token,Token de autenticação, -Read Time,Tempo de leitura, -in minutes,em minutos, -Featured,Destaque, -Hide CTA,Ocultar CTA, -"Description for listing page, in plain text, only a couple of lines. (max 200 characters)","Descrição da página de listagem, em texto simples, apenas algumas linhas. (máx. 200 caracteres)", -Meta Title,Meta Título, -Enable Social Sharing,Ativar compartilhamento social, -Show CTA in Blog,Mostrar CTA no blog, -CTA,CTA, -CTA Label,Etiqueta CTA, -CTA URL,URL CTA, -Default Portal Home,Página inicial do portal padrão, -Example: "/desk",Exemplo: "/ desk", -Social Link Settings,Configurações de link social, -Social Link Type,Tipo de Link Social, -facebook,Facebook, -linkedin,LinkedIn, -twitter,Twitter, -"If Icon is set, it will be shown instead of Label","Se o ícone estiver definido, ele será mostrado em vez do rótulo", -Apply Document Permissions,Aplicar permissões de documento, -For help see Client Script API and Examples,"Para obter ajuda, consulte Client Script API e exemplos", -Dynamic Route,Rota Dinâmica, -Map route parameters into form variables. Example /project/<name>,Mapeie os parâmetros da rota em variáveis de formulário. Exemplo /project/<name>, -Context Script,Script de Contexto, -"

Set context before rendering a template. Example:

\n

\ncontext.project = frappe.get_doc(""Project"", frappe.form_dict.name)\n
","

Defina o contexto antes de renderizar um modelo. Exemplo:

 context.project = frappe.get_doc("Project", frappe.form_dict.name)
", -Title of the page,Título da página, -This title will be used as the title of the webpage as well as in meta tags,"Este título será usado como o título da página da web, bem como nas metatags", -Makes the page public,Torna a página pública, -Checking this will publish the page on your website and it'll be visible to everyone.,Marcar isso publicará a página em seu site e ficará visível para todos., -URL of the page,URL da página, -"This will be automatically generated when you publish the page, you can also enter a route yourself if you wish","Isso será gerado automaticamente quando você publicar a página, você também pode inserir uma rota se desejar", -Content type for building the page,Tipo de conteúdo para construir a página, -"You can select one from the following,","Você pode selecionar um dos seguintes,", -Standard rich text editor with controls,Editor de rich text padrão com controles, -Github flavoured markdown syntax,Sintaxe de marcação com sabor de Github, -HTML with jinja support,HTML com suporte jinja, -Frappe page builder using components,Construtor de páginas Frappe usando componentes, -Checking this will show a text area where you can write custom javascript that will run on this page.,Marcar isto irá mostrar uma área de texto onde você pode escrever um javascript personalizado que será executado nesta página., -Meta title for SEO,Meta título para SEO, -"By default the title is used as meta title, adding a value here will override it.","Por padrão, o título é usado como meta título, adicionar um valor aqui irá substituí-lo.", -"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.","A meta descrição é um atributo HTML que fornece um breve resumo de uma página da web. Mecanismos de pesquisa como o Google geralmente exibem a meta descrição nos resultados da pesquisa, o que pode influenciar as taxas de cliques.", -"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.",A meta imagem é uma imagem única que representa o conteúdo da página. As imagens para este cartão devem ter pelo menos 280 px de largura e pelo menos 150 px de altura., -Add Space on Top,Adicionar espaço no topo, -Add Space on Bottom,Adicionar espaço na parte inferior, -Is Unique,É único, -User Agent,Agente de usuário, -Table Break,Pausa para a mesa, -Hide Login,Ocultar login, -Navbar Template,Modelo Navbar, -Navbar Template Values,Valores de modelo de Navbar, -Call To Action,Apelo à ação, -Call To Action URL,URL de apelo à ação, -Footer Logo,Logotipo do rodapé, -Footer Template,Modelo de rodapé, -Footer Template Values,Valores de modelo de rodapé, -Enable Tracking Page Views,Ativar rastreamento de visualizações de página, -"Checking this will enable tracking page views for blogs, web pages, etc.","Marcar isso permitirá o rastreamento de visualizações de páginas de blogs, páginas da web, etc.", -Disable Signup for your site,Desativar inscrição para seu site, -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.,Marque esta opção se não quiser que os usuários se inscrevam em uma conta no seu site. Os usuários não terão acesso à mesa a menos que você o forneça explicitamente., -URL to go to on clicking the slideshow image,URL para acessar ao clicar na imagem da apresentação de slides, -Custom Overrides,Substituições personalizadas, -Ignored Apps,Aplicativos ignorados, -Include Theme from Apps,Incluir tema de aplicativos, -Website Theme Ignore App,Aplicativo para ignorar tema do site, -Are you sure you want to save this document?,Tem certeza que deseja salvar este documento?, -Refresh All,Atualize tudo, -"Level 0 is for document level permissions, higher levels for field level permissions.","O nível 0 é para permissões de nível de documento, níveis mais altos para permissões de nível de campo.", -Website Analytics,Análise do site, -d,d,Dias (Campo: Duração) -h,h,Horas (Campo: Duração) -m,m,Minutos (Campo: Duração) -s,s,Segundos (Campo: Duração) -Less,Menos, -Not a valid DocType view:,Não é uma visualização válida de DocType:, -Unknown View,Vista Desconhecida, -Go Back,Volte, -Let's take you back to onboarding,Vamos levá-lo de volta à integração, -Great Job,Bom trabalho, -Looks Great,Parece ótimo, -Looks like you didn't change the value,Parece que você não alterou o valor, -Oops,Opa, -Skip Step,Pular etapa, -"You're doing great, let's take you back to the onboarding page.","Você está indo muito bem, vamos levá-lo de volta à página de integração.", -Good Work 🎉,Bom trabalho 🎉, -Submit this document to complete this step.,Envie este documento para concluir esta etapa., -Great,Ótimo, -You may continue with onboarding,Você pode continuar com a integração, -You seem good to go!,Você parece bom para ir!, -Onboarding Complete,Integração completa, -{0} Settings,{0} Configurações, -{0} Fields,{0} campos, -Reset Fields,Limpar campos, -Select Fields,Selecione os campos, -Warning: Unable to find {0} in any table related to {1},Aviso: Não foi possível encontrar {0} em nenhuma tabela relacionada a {1}, -Tree view is not available for {0},A visualização em árvore não está disponível para {0}, -Create Card,Criar cartão, -Card Label,Etiqueta do cartão, -Reports already in Queue,Relatórios já na fila, -Proceed Anyway,Continue mesmo assim, -Delete and Generate New,Excluir e gerar novo, -1 Report,1 relatório, -{0} ({1}) (1 row mandatory),{0} ({1}) (1 linha obrigatória), -Select Fields To Insert,Selecione os campos para inserir, -Select Fields To Update,Selecione os campos para atualizar, -"This document is already amended, you cannot ammend it again","Este documento já foi alterado, você não pode alterá-lo novamente", -Add to ToDo,Adicionar ao ToDo, -{0} is currently {1},{0} atualmente é {1}, -{0} are currently {1},{0} são atualmente {1}, -Currently Replying,Atualmente respondendo, -created {0},criado em {0}, -Make a call,Faça uma ligação, -Change,Troco,Moedas -Too Many Requests,Muitos pedidos, -"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Cabeçalhos de autorização inválidos, adicione um token com um prefixo de um dos seguintes: {0}.", -"Invalid Authorization Type {0}, must be one of {1}.","Tipo de autorização inválido {0}, deve ser um de {1}.", -{} is not a valid date string.,{} não é uma string de data válida., -Invalid Date,Data inválida, -Please select a valid date filter,Selecione um filtro de data válido, -Value {0} must be in the valid duration format: d h m s,O valor {0} deve estar no formato de duração válido: dhms, -Google Sheets URL is invalid or not publicly accessible.,O URL do Planilhas Google é inválido ou não está acessível publicamente., -Google Sheets URL must end with "gid={number}". Copy and paste the URL from the browser address bar and try again.,O URL do Planilhas Google deve terminar com "gid = {número}". Copie e cole o URL da barra de endereço do navegador e tente novamente., -Incorrect URL,URL incorreto, -"{0}" is not a valid Google Sheets URL,"{0}" não é um URL válido do Planilhas Google, -Duplicate Name,Nome duplicado, -Please check the value of "Fetch From" set for field {0},Verifique o valor de "Buscar de" definido para o campo {0}, -Wrong Fetch From value,Valor errado de busca, -A field with the name '{}' already exists in doctype {}.,Já existe um campo com o nome '{}' em doctype {}., -Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account.,O campo personalizado {0} é criado pelo administrador e só pode ser excluído por meio da conta do administrador., -Failed to send {0} Auto Email Report,Falha ao enviar {0} relatório de e-mail automático, -Test email sent to {0},Email de teste enviado para {0}, -Email queued to {0} recipients,Email na fila para {0} destinatários, -Newsletter should have at least one recipient,O boletim deve ter pelo menos um destinatário, -Please enable Twilio settings to send WhatsApp messages,Ative as configurações do Twilio para enviar mensagens do WhatsApp, -"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Não tem permissão para anexar documento {0}, ative Permitir impressão para {0} nas configurações de impressão", -Signup Disabled,Inscrição Desativada, -Signups have been disabled for this website.,As inscrições foram desativadas para este site., -Open Document,Documento Aberto, -The comment cannot be empty,O comentário não pode estar vazio, -Hourly comment limit reached for: {0},Limite de comentários por hora atingido para: {0}, -Please add a valid comment.,"Por favor, adicione um comentário válido.", -Document {0} Already Restored,Documento {0} já restaurado, -Restoring Deleted Document,Restaurando Documento Excluído, -{function} of {fieldlabel},{função} de {fieldlabel}, -Invalid template file for import,Arquivo de modelo inválido para importação, -Invalid or corrupted content for import,Conteúdo inválido ou corrompido para importação, -Value {0} must in {1} format,O valor {0} deve estar no formato {1}, -{0} is a mandatory field asdadsf,{0} é um campo obrigatório asdadsf, -Could not map column {0} to field {1},Não foi possível mapear a coluna {0} para o campo {1}, -Skipping Duplicate Column {0},Ignorando coluna duplicada {0}, -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.,"A coluna {0} possui {1} formatos de data diferentes. Definindo automaticamente {2} como o formato padrão, pois é o mais comum. Por favor, altere outros valores nesta coluna para este formato.", -You have reached the hourly limit for generating password reset links. Please try again later.,"Você atingiu o limite de hora para gerar links de redefinição de senha. Por favor, tente novamente mais tarde.", -Please hide the standard navbar items instead of deleting them,Oculte os itens padrão da barra de navegação em vez de excluí-los, -DocType's name should not start or end with whitespace,O nome de DocType não deve começar ou terminar com um espaço em branco, -File name cannot have {0},O nome do arquivo não pode ter {0}, -{0} is not a valid file url,{0} não é um url de arquivo válido, -Error Attaching File,Erro ao anexar arquivo, -Please generate keys for the Event Subscriber User {0} first.,Gere as chaves para o Usuário Assinante do Evento {0} primeiro., -Please set API Key and Secret on the producer and consumer sites first.,Defina a chave e o segredo da API nos sites do produtor e do consumidor primeiro., -User {0} not found on the producer site,Usuário {0} não encontrado no site do produtor, -Event Subscriber has to be a System Manager.,O Assinante do Evento deve ser um Gerente do Sistema., -Row #{0}: Invalid Local Fieldname,Linha # {0}: Nome de campo local inválido, -Row #{0}: Please set Mapping or Default Value for the field {1} since its a dependency field,"Linha nº {0}: Defina o mapeamento ou valor padrão para o campo {1}, pois é um campo de dependência", -Row #{0}: Please set remote value filters for the field {1} to fetch the unique remote dependency document,Linha nº {0}: Defina filtros de valor remoto para o campo {1} para buscar o documento de dependência remota exclusivo, -Paytm payment gateway settings,Configurações de gateway de pagamento Paytm, -"Company, Fiscal Year and Currency defaults","Padrões da empresa, ano fiscal e moeda", -Razorpay Signature Verification Failed,Falha na verificação da assinatura Razorpay, -Google Drive - Could not locate - {0},Google Drive - Não foi possível localizar - {0}, -"Sync token was invalid and has been resetted, Retry syncing.",O token de sincronização era inválido e foi redefinido. Tente sincronizar novamente., -Please select another payment method. Paytm does not support transactions in currency '{0}',Selecione outro método de pagamento. Paytm não suporta transações na moeda '{0}', -Invalid Account SID or Auth Token.,SID de conta ou token de autenticação inválido., -Please enable twilio settings before sending WhatsApp messages,Ative as configurações do twilio antes de enviar mensagens do WhatsApp, -Delivery Failed,Falha na entrega, -Twilio WhatsApp Message Error,Twilio WhatsApp Message Error, -A featured post must have a cover image,Uma postagem em destaque deve ter uma imagem de capa, -Load More,Carregue mais, -Published on,Publicado em, -Enable developer mode to create a standard Web Template,Habilite o modo de desenvolvedor para criar um modelo da Web padrão, -Was this article helpful?,Esse artigo foi útil?, -Thank you for your feedback!,Obrigado pelo seu feedback!, -New Mention on {0},Nova menção em {0}, -Assignment Update on {0},Atualização de atribuição em {0}, -New Document Shared {0},Novo documento compartilhado {0}, -Energy Point Update on {0},Atualização do Energy Point em {0}, -You cannot create a dashboard chart from single DocTypes,Você não pode criar um gráfico de Dashboard de DocTypes únicos, -Invalid json added in the custom options: {0},JSON inválido adicionado nas opções personalizadas: {0}, -Invalid JSON in card links for {0},JSON inválido em links de cartão para {0}, -Standard Not Set,Padrão não definido, -Please set the following documents in this Dashboard as standard first.,Defina os seguintes documentos neste Dashboard como padrão primeiro., -Shared with the following Users with Read access:{0},Compartilhado com os seguintes usuários com acesso de leitura: {0}, -Already in the following Users ToDo list:{0},Já está na seguinte lista de tarefas de usuários: {0}, -Your assignment on {0} {1} has been removed by {2},Sua tarefa em {0} {1} foi removida por {2}, -Invalid Credentials,Credenciais inválidas, -Print UOM after Quantity,Imprimir UOM após a quantidade, -Uncaught Server Exception,Exceção de servidor não detectado, -There was an error building this page,Ocorreu um erro ao construir esta página, -Hide Traceback,Esconder Traceback, -Value from this field will be set as the due date in the ToDo,O valor deste campo será definido como a data de vencimento no ToDo, -New module created {0},Novo módulo criado em {0}, -"Report has no numeric fields, please change the Report Name","O relatório não tem campos numéricos, altere o nome do relatório", -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.,Existem documentos com estados de fluxo de trabalho que não existem neste fluxo de trabalho. É recomendável adicionar esses estados ao fluxo de trabalho e alterar seus estados antes de removê-los., -Worflow States Don't Exist,Estados de Worflow não existem, -Save Anyway,Salvar assim mesmo, -Energy Points:,Pontos de energia:, -Review Points:,Pontos de revisão:, -Rank:,Classificação:, -Monthly Rank:,Classificação Mensal:, -Invalid expression set in filter {0} ({1}),Expressão inválida definida no filtro {0} ({1}), -Invalid expression set in filter {0},Expressão inválida definida no filtro {0}, -{0} {1} added to Dashboard {2},{0} {1} adicionado ao Dashboard {2}, -Set Filters for {0},Definir filtros para {0}, -Not permitted to view {0},Não tem permissão para ver {0}, -Camera,câmera, -Invalid filter: {0},Filtro inválido: {0}, -Let's Get Started,Vamos começar, -Reports & Masters,Relatórios e Cadastros, -New {0} {1} added to Dashboard {2},Novo {0} {1} adicionado ao Dashboard {2}, -New {0} {1} created,Novo {0} {1} criado, -New {0} Created,Novo {0} criado, -Invalid "depends_on" expression set in filter {0},Expressão "depends_on" inválida definida no filtro {0}, -{0} Reports,{0} relatórios, -There is {0} with the same filters already in the queue:,Há {0} com os mesmos filtros já na fila:, -There are {0} with the same filters already in the queue:,Existem {0} com os mesmos filtros já na fila:, -Are you sure you want to generate a new report?,Tem certeza de que deseja gerar um novo relatório?, -{0}: {1} vs {2},{0}: {1} vs {2}, -Add a {0} Chart,Adicionar um {0} gráfico, -Currently you have {0} review points,Atualmente você tem {0} pontos de revisão, -{0} is not a valid DocType for Dynamic Link,{0} não é um DocType válido para Dynamic Link, -via Assignment Rule,via regra de atribuição, -Based on Field,Com base no campo, -Assign to the user set in this field,Atribuir ao usuário definido neste campo, -Log Setting User,Usuário de configuração de log, -Log Settings,Configurações de registro, -Error Log Notification,Notificação de log de erros, -Users To Notify,Usuários para notificar, -Log Cleanup,Limpeza de Log, -Clear Error log After,Limpar log de erros após, -Clear Activity Log After,Limpar log de atividades depois, -Clear Email Queue After,Limpar fila de e-mail após, -Please save to edit the template.,Salve para editar o modelo., -Google Analytics Anonymize IP,IP anônimo do Google Analytics, -Incorrect email or password. Please check your login credentials.,Senha ou email incorretos. Verifique suas credenciais de login., -Incorrect Configuration,Configuração Incorreta, -You are not allowed to delete Standard Report,Você não tem permissão para excluir o relatório padrão, -You have unseen {0},Você não viu {0}, -Log cleanup and notification configuration,Limpeza de registro e configuração de notificação, -State/Province,Estado / Província, -Document Actions,Ações do Documento, -Document Links,Links de documentos, -List Settings,Configurações da lista, -Cannot delete standard link. You can hide it if you want,Não é possível excluir o link padrão. Você pode esconder se quiser, -Cannot delete standard action. You can hide it if you want,Não é possível excluir a ação padrão. Você pode esconder se quiser, -Applied On,Aplicado em, -Row Name,Nome da Linha, -For DocType Link / DocType Action,Para DocType Link / DocType Action, -Cannot edit filters for standard charts,Não é possível editar filtros para gráficos padrão, -Event Producer Last Update,Última atualização do produtor de eventos, -Default for 'Check' type of field {0} must be either '0' or '1',Padrão para 'Verificar' o tipo de campo {0} deve ser '0' ou '1', -Non Negative,Não Negativo, -Rules with higher priority number will be applied first.,Regras com número de prioridade mais alta serão aplicadas primeiro., -Open URL in a New Tab,Abrir URL em uma nova guia, -Align Right,Alinhar à direita, -Loading Filters...,Carregando filtros ..., -Count Customizations,Personalizações de contagem, -For Example: {} Open,Por exemplo: {} aberto, -Choose Existing Card or create New Card,Escolha o cartão existente ou crie um novo cartão, -Number Cards,Cartões numéricos, -Function Based On,Função baseada em, -Add Filters,Adicionar Filtros, -Skip,Pular, -Dismiss,Dispensar, -Value cannot be negative for,O valor não pode ser negativo para, -Value cannot be negative for {0}: {1},O valor não pode ser negativo para {0}: {1}, -Negative Value,Valor Negativo, -Authentication failed while receiving emails from Email Account: {0}.,Falha na autenticação ao receber e-mails da conta de e-mail: {0}., -Message from server: {0},Mensagem do servidor: {0}, diff --git a/frappe/translations/sr_ba.csv b/frappe/translations/sr_ba.csv deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/translations/sr_sp.csv b/frappe/translations/sr_sp.csv deleted file mode 100644 index 95eaf387ec..0000000000 --- a/frappe/translations/sr_sp.csv +++ /dev/null @@ -1,454 +0,0 @@ -Account,Račun, -Accounts Manager,Menadžer računa, -Accounts User,Računi korisnik, -Active,Aktivan, -Add,Dodaj, -Add Comment,Dodaj komentar, -Add Row,Dodaj red, -Address,Adresa, -Address Line 2,Adresa 2, -Amended From,Izmijenjena iz, -Amount,Vrijednost, -Assign,Dodijeli, -Assign To,Dodijeli, -Attachment,Prilog, -Attachments,Prilozi, -Cancel,Otkaži, -Closed,Zatvoreno, -Collapse All,Skupi sve, -Contact,Kontakt, -Created By,Kreirao, -Datetime,Datum vrijeme, -Default Letter Head,Podrazumijevano zaglavlje, -Delivery Status,Status isporuke, -Document Status,Status dokumenta, -Email Account,Email nalog, -Enabled,Aktivan, -End Date,Datum završetka, -Error Log,Log grešaka, -Expand All,Proširi sve, -First Name,Ime, -From,Od, -Full Name,Puno ime, -Gender,Pol, -High,Visok, -Image,Slika, -Image View,Prikaz slike, -Import Log,Log uvoza, -Is Active,Je aktivan, -Last Name,Prezime, -Leaderboard,Tabla, -Letter Head,Zaglavlje, -Low,Nizak, -Maintenance Manager,Menadžer održavanja, -Maintenance User,Korisnik održavanja, -Medium,Srednji, -Middle Name (Optional),Srednje ime (opciono), -More Information,Više informacija, -Move,Kretanje, -New Address,Nova adresa, -New Contact,Novi kontakt, -No address added yet.,Adresa još nije dodata., -No contacts added yet.,Još uvijek nema dodatih kontakata, -Not active,Nije aktivna, -Notes,Bilješke, -Online,Na mreži, -Password,Lozinka, -Payments,Plaćanja, -Primary,Primarni, -Print Settings,Podešavanje štampanja, -Purchase Manager,Menadžer nabavke, -Purchase Master Manager,Direktor nabavke, -Purchase User,Korisnik u nabavci, -Received,Primljeno, -Reference,Vezni dokumenti, -Report,Izvještaj, -Report Builder,Generator izvještaja, -Report Type,Vrsta izvještaja, -Reports,Izvještaji, -Role,Uloga, -Sales Manager,Menadžer prodaje, -Sales Master Manager,Direktor prodaje, -Sales User,Korisnik prodaje, -Salutation,Titula, -Saved,Sačuvano, -Start Date,Datum početka, -Subject,Naslov, -Submit,Potvrdi, -System Manager,Menadžer sistema, -Task,Zadatak, -To Date,Do datuma, -Tools,Alati, -Users,Korisnici, -Website,Web sajt, -Website Manager,Menadžer za web sajt, -Week,Nedelja, -Weekly,Nedeljni, -1 comment,1 komentar, -; not allowed in condition,; није дозвољенa у услову, -About Us Settings,Podešavanja o nama, -Add Attachment,Dodaj prilog, -Add Column,Dodaj kolonu, -Add Contact,Dodaj kontakt, -Add Filter,Dodaj filter, -Add Signature,Dodaj potpis, -Add Total Row,Dodaj red ukupno bez PDV-a, -Add a New Role,Dodaj novu rolu, -Add a column,Dodaj kolonu, -Add a comment,Dodaj komentar, -Add all roles,Dodaj sve role, -Addresses And Contacts,Adrese i kontakti, -Advanced Search,Napredna pretraga, -Allocated To,Dodijeljeno je, -Allow Comments,Dozvoli komentare, -Amend,Izmijeni, -Apply,Primijeni, -Assign to me,Dodijeljeno meni, -Assigned,Dodijeljeno, -Assigned By,Dodijelio od strane, -Assigned By Me,Dodijelio drugima, -Assigned To,Dodijeljeno prema, -Assigned To/Owner,Dodijeljeno / Vlasnik, -Assignment,Dodjeljivanje, -Attach Image,Dodajte sliku, -Attach Your Picture,Priložite svoju fotografiju, -Attached To DocType,Priložen u vrstu dokumetu, -Attachment Limit (MB),Prilog limitiran na (MB), -Attachment Removed,Prilog uklonjen, -Back to Login,Vrati se na prijavu, -Background Jobs,Pozadinski procesi, -Between,Između, -Blogger,Blogger, -Brand Image,Slika brenda, -Can Share,Može dijeliti, -Cannot delete Home and Attachments folders,Ne možete brisati foldere Naslovna i prilozi, -Change Password,Promjena lozinke, -Chat,Poruke, -Chat messages and other notifications.,Poruke i ostala obavještenja., -Clear Error Logs,Očisti Log grešaka, -Clear all roles,Obriši sve role, -Confirm,Potvrdi, -Confirm Your Email,Potvrdi tvoj E mail, -Contacts,Kontakti, -Country Name,Ime države, -Create User Email,Kreiraj korisnički Email, -Create a new {0},Kreirajte {0}, -Created On,Kreirano, -Ctrl + Down,Ctrl + down, -Ctrl + Up,Ctrl + up, -Ctrl+Enter to add comment,Ctrl + enter da dodate komentar, -Custom Role,Prilagođjena rola, -Data Import,Uvoz podataka, -Data Import Template,Šablon za uvoz podataka, -Delete comment?,Obriši komentar?, -Delete {0} items permanently?,Trajno obriši stavke{0} ?, -Deleted,Obrisan, -Deleted Documents,Obrisana dokumenta, -Desktop Icon,Ikone na radnoj površini, -Desktop Icon already exists,Ikona na radnoj površini već postoji, -Did not add,Nije dodato, -DocShare,Dijeljenje dokumenta, -Document Share Report,Izvještaj o dijeljenim dokumentima, -Dropbox Setup,Dropbox podešavanje, -Duplicate Filter Name,Ime filtera već postoji, -Editing Row,Izmjena u redu, -Email Addresses,Email adrese, -Email Group,Email grupa, -Email Settings,Podešavanje emaila, -Enter folder name,Unesi naziv foldera, -Enter your password,Unesite lozinku, -Equals,Jednak, -Error Snapshot,Snimak grešaka (snapshot), -Event and other calendars.,Događaji i ostali kalendari., -Events in Today's Calendar,Događaji u kalendaru na današnji dan., -Everyone,Svi, -Export Report: {0},Izvoz izvještaja: {0}, -File Name,Naziv dokumenta, -File Size,Veličina fajla, -File Upload,Dodavanje fajla, -Files,Fajlovi, -Filter Name,Naziv filtera, -Folder,Folder, -Folder {0} is not empty,Folder {0} nije prazan, -Forgot Password,Zaboravili ste lozinku, -Gantt,Gantogram, -Has Role,Ima ulogu, -Help on Search,Pomoć oko pretrage, -Hide details,Sakrij detalje, -Home/Test Folder 1,Naslovna / Test Folder1, -Home/Test Folder 1/Test Folder 3,Naslovna / Test Folder1 / Test Folder3, -Home/Test Folder 2,Nalovna/ Test Folder2, -ID,ID, -Image Field,Polje sa slikom, -Image Link,Link za sliku, -Images,Slike, -Import,Uvoz, -Import Status,Status uvoza, -Import Zip,Uvoz zip arhive, -Insert Above,Ubacite iznad, -Insert Below,Ubacite ispod, -Invalid Password,Pogrešna lozinka, -Invalid Password:,Pogrešna lozinka:, -Is Attachments Folder,Da li je prilog folder, -Is Folder,Da li je Folder, -Is Home Folder,Da li je folder naslovna, -Is Primary Contact,Je primarni kontakt, -Kanban,Kanban, -Knowledge Base Contributor,Saradnik zs bazu znanja, -Knowledge Base Editor,Urednik baze znanja, -Language,Jezik, -Last Login,Poslednja prijava, -Last Modified On,Poslednji put izmijenjeno, -Links,Linkovi, -List,Lista, -Loading,Učitavanje, -Login,Prijava, -Login After,Prijava nakon, -Login Before,Prijava prije, -"Mandatory fields required in table {0}, Row {1}","Obavezna polja koja se moraju unijeti u tabeli {0}, Red {1}", -Mandatory fields required in {0},Obavezna polja koja se moraju unijeti u dijelu {0}, -Menu,Meni, -Merge with existing,Spoji sa postojećim, -Missing Fields,Polja koja nisu unešena, -Most Used,Najviše korišćeno, -Naming Series mandatory,Vrsta dokumenta je obavezna, -New Email,Novi email, -New Folder,Novi folder, -New Kanban Board,Nova Kanban prikaz, -New Name,Novi naziv, -New Newsletter,Novi newsletter, -New Password,Nova lozinka, -New Report name,Novi naziv izvještaja, -New Value,Nova vrijednost, -New {0},Novi {0}, -Newsletter Manager,Menadžer newsletter-a, -No Tags,Nema tag-ova, -No {0} found,{0} nije nadjen, -No {0} mail,{0} email nije nađen, -No {0} permission,{0} Nema dozvolu, -Not Equals,Nije jednak, -Not In,Nije u, -Not Saved,Nije sačuvano, -Note Seen By,Bilješku je vidio, -Open {0},Otvoren {0}, -Opened,Otvoreno, -PDF,PDF, -Payment Cancelled,Plaćenje otkazano, -Payment Failed,Plaćanje nije uspjelo, -Payment Success,Plaćanje uspješno, -Permanently Cancel {0}?,Trajno otkaži {0} ?, -Permanently Submit {0}?,Trajno potvrdi {0} ?, -Permanently delete {0}?,Trajno obriši dokument {0} ?, -Pick Columns,Odaberi kolone, -Please Enter Your Password to Continue,Za nastavak unesite lozinku, -Post,Pošalji, -Postal Code,Poštanski broj, -Reload,Učitaj ponovo, -Remove,Ukloni, -Rename {0},Preimenuj {0}, -Report Filters,Filteri na izvještaju, -Report Hide,Sakrij izvještaj, -Report Manager,Menadžer za izvještaje, -Report Name,Naziv izvještaja, -Report {0},Izvještaj {0}, -Report {0} is disabled,Izvještaj {0} јe onemogućen, -Reset Password,Resetuju lozinku, -Reset Password Key,Resetuj ključ lozinke, -Restore or permanently delete a document.,Vrati ili trajno obriši dokument., -Role Permissions,Prava pristupa rolama, -Roles,Role, -Save As,Sačuvaj kao, -Save Filter,Sačuvaj filter, -Saving,Čuvanje, -Script or Query reports,Skripte ili query izvještaji, -Search or type a command,Pretražite ili otkucajte komandu, -Security Settings,Bezbjedonosna podešavanja, -Select File Type,Odaberite tip datoteke, -Send Print as PDF,Štampaj u PDF, -Session Expired,Sesija je istekla, -Session Expiry,Sesija ističe, -Session Expiry in Hours e.g. 06:00,Sesija ističe u satima npr. 06:00, -Set User Permissions,Postavite korisnička prava, -Setup Auto Email,Podešavanje auto e-mail-a, -Setup Complete,Podešavanje završeno, -Share With,Podijeli sa, -Share this document with,Podijelite ovaj dokument sa, -Share {0} with,Podijeli {0} sa, -Shared With,Podijeljeno sa, -Shared with everyone,Podijeljeno sa svima, -Shared with {0},Podijeljeno sa {0}, -Show Totals,Prikaži ukupno, -Show all Versions,Prikaži sve verzije, -Sorry! You are not permitted to view this page.,Niste autorizovani za prikaz ove stranice., -Sort Order,Sortiranje, -Standard Reports,Standardni izvještaji, -States,Države, -Subject Field,Polje naslova, -Submit this document to confirm,Potvrdi ovaj dokument da bi ga zaključio, -Submitting,Potvrđivanje, -Success Message,Poruka o uspjehu, -Switch To Desk,Pređi na radnu površinu, -System Settings,Sistemska podešavanja, -Test_Folder,Test_folder, -To Do,To Do, -ToDo,To Do, -Tree,Stablo, -Unshared,Nije podijeljen, -User '{0}' already has the role '{1}',Korisnik '{0}' već sarži rolu '{1}', -User Permissions,Prava pristupa korisnika, -User Tags,Korisnički tagovi, -Users with role {0}:,Korisnici sa rolom {0} :, -View List,Prikaz liste, -View Website,Pogledaj sajt, -With Letter head,Sa zaglavljem, -Y Axis Fields,Поља на Y-oси, -Yandex.Mail,Yandex.Mail, -Yesterday,Juče, -You are not allowed to create columns,Немате дозволу да правите колоне, -You are not allowed to delete a standard Website Theme,Немате дозволу за брисање стандардне Вебсајт Теме, -You are not allowed to print this document,Немате дозволу да штампате овај документ, -You are not allowed to print this report,Немате дозволу да штампате овај извештај, -You are not allowed to send emails related to this document,Немате дозволу да шаљете мејлове у вези са овим документом, -You are not allowed to update this Web Form Document,Немате дозволу да ажурирате овај Документ Веб Форме, -You are not connected to Internet. Retry after sometime.,Нисте повезани са Интернетом. Покушајте касније., -You are not permitted to access this page.,Немате дозволу да приступите овој страници., -You are not permitted to view the newsletter.,Немате дозволу да видите овај билтен., -You can add dynamic properties from the document by using Jinja templating.,Можете да додате динамичке вредности из документа помоћу Jinja шаблона., -"You can change Submitted documents by cancelling them and then, amending them.",Можете да измените потврђене документе тако што ћете их поништити а затим изменити., -You can find things by asking 'find orange in customers',"Можете тражити ствари претрагом ""тражи наранџасто у купцима""", -You can only upload upto 5000 records in one go. (may be less in some cases),Можете поднети највише 5000 записа одједном. (некада може бити и мање), -You can use Customize Form to set levels on fields.,Можете користити Прилагоди Формулар да подесите нивое на пољима., -You can use wildcard %,Можете да користите џокер %, -You can't set 'Translatable' for field {0},Не можете поставити 'Може се превести' за поље {0}, -You cannot unset 'Read Only' for field {0},"Не можете искључити ""Само за читање"" за поље {0}", -You do not have enough permissions to access this resource. Please contact your manager to get access.,Немате дозволу да приступите овоме. Молимо јавите се свом менаџеру да добијете приступ., -You do not have enough permissions to complete the action,Немате дозволу да завршите ову акцију., -You don't have access to Report: {0},Немате дозволу да приступите Извештају: {0}, -You don't have any messages yet.,Још увек немате порука., -You don't have permission to access this file,Немате дозволу да приступите овој датотеци., -You don't have permission to get a report on: {0},Немате дозволу да добијете извештај о: {0}, -You don't have the permissions to access this document,Немате дозволу да приступите овом документу., -You have been successfully logged out,Успешно сте се одјавили, -_doctype,_doctype, -_report,_izvještaj, -e.g.:,npr:, -folder-close,Folder-zatvori, -folder-open,folder-otvori, -picture,Slika, -renamed from {0} to {1},Preimenuj iz {0} u {1}, -share-alt,Podijeli-alt, -show,Prikaži, -{0} List,{0} Lista, -{0} Report,Izvještaj {0}, -{0} Tree,{0} stablo, -{0} added,Dodao je {0}, -{0} comments,{0} komentara, -{0} days ago,prije {0} dana, -{0} is saved,{0} je sačuvan, -{0} months ago,Prije {0} mjeseci, -{0} or {1},{0} {1} ili, -{0} to {1},{0} do {1}, -{0} {1} to {2},{0} {1} do {2}, -Change,Kusur, -From Date,Od datuma, -Go,Traži, -Naming Series,Vrste dokumenta, -Activity,Aktivnost, -Add Child,Dodaj podređeni, -Add Multiple,Dodaj više, -Added {0} ({1}),Dodato {0} ({1}), -Address Line 1,Adresa 1, -Addresses,Adrese, -All,Svi, -Brand,Brend, -Browse,Izaberi, -Cancelled,Otkazan, -Close,Zatvori, -Company,Preduzeće, -Completed,Završeno, -Country,Država, -Currency,Valuta, -Customize,Prilagodite, -Date,Datum, -Delete,Obriši, -Description,Opis, -Disabled,Neaktivni, -Due Date,Datum dospijeća, -Duplicate,Dupliraj, -Email,Email, -Error,Greška, -Export,Izvezi, -File Manager,Fajlovi, -Get Items,Dodaj stavke, -Help,Pomoć, -Home,Naslovna, -Loading...,Učitavanje ..., -Mobile No,Mobilni br., -Newsletter,Newsletter, -Note,Bilješke, -Offline,Van mreže (offline), -Open,Otvoren, -Pay,Plati, -Project,Projekti, -Rename,Reimenuj, -Save,Sačuvaj, -Set,Set, -Setup,Podešavanje, -Setup Wizard,Čarobnjak za postavke, -Sr,Rb, -Status,Status, -Submitted,Potvrđen, -Title,Naslov, -Total,Ukupno, -Totals,Ukupno, -Type,Tip, -Users and Permissions,Korisnici i dozvole, -Warehouse,Skladište, -You can also copy-paste this link in your browser,Можете и да копирате и налепите овај линк у свој претраживач., -ALL,Svi, -Attach File,Priloži dokument, -CANCELLED,Otkazan, -Calendar,Kalendar, -Comments,Komentari, -DRAFT,Na čekanju, -EMail,Email, -Not Like,Nije kao, -Refresh,Osvježi, -Tags,Tagovi, -Upload,Priloži, -Desktop,Radna površina, -Download Backups,Preuzmi rezervne kopije programa, -Role Permissions Manager,Menadžer prava pristupa rolama, -Edit in full page,Izmijeni u punoj strani, -Email Id,Email adresa, -Email address,Email adresa, -No,Ne, -Upload failed,Dodavanje priloga neuspješno, -Yes,Da, -added,Dodato, -added {0},Dodatо {0}, -barcode,barkod, -calendar,Kalendar, -comment,Komentar, -comments,Komentari, -created,Kreirano, -dashboard,Nadzorna ploča, -download,Preuzmi, -edit,Izmijeni, -email inbox,Email primljene, -home,Naslovna, -like,Kao, -list,Lista, -message,Poruka, -move,Kretanje, -new,Novi, -print,Štampaj, -refresh,Osvježi, -remove,Ukloni, -share,Podijeli, -success,Uspješno, -tags,Tagovi, -upload,Priloži, -user,Korisnik, -web link,Url adresa, -yellow,жуто, diff --git a/frappe/translations/zh_tw.csv b/frappe/translations/zh_tw.csv deleted file mode 100644 index 8b2f45908f..0000000000 --- a/frappe/translations/zh_tw.csv +++ /dev/null @@ -1,4202 +0,0 @@ -API Endpoint,API端點, -API Key,API密鑰, -Access Token,存取 Token, -Account,帳戶, -Accounts Manager,會計經理, -Accounts User,會計人員, -Action,行動, -Active,啟用, -Add,新增, -Add Comment,添加評論, -Address Line 2,地址第2行, -Address Title,地址名稱, -Address Type,地址類型, -Administrator,管理員, -All Day,一整天, -Allow Delete,允許刪除, -Amended From,從修訂, -Amount,量, -Applicable For,適用, -Approval Status,審批狀態, -Assign,指派, -Assign To,指派給, -Auto Repeat,自動重複, -Base URL,基本網址, -Based On,基於, -Beginner,初學者, -Billing,計費, -Category,類別, -Category Name,分類名稱, -City,市, -City/Town,市/鎮, -Client,客戶, -Client ID,客戶端ID, -Client Secret,客戶秘密, -Closed,關閉, -Code,源碼, -Collapse All,全部收縮, -Color,顏色, -Company Name,公司名稱, -Condition,條件, -Contact,聯絡人, -Contact Details,聯絡方式, -Content,內容, -Content Type,內容類型, -Create,建立, -Created By,建立者, -Current,當前, -Custom HTML,自定義HTML, -Custom?,自定義?, -Datetime,日期時間, -Default Letter Head,預設信頭, -Defaults,預設, -Delivery Status,交貨狀態, -Department,部門, -Details,詳細資訊, -Document Name,文件名稱, -Document Status,文檔狀態, -Document Type,文件類型, -Domain,網域, -Edit,編輯, -Email Account,電子郵件帳戶, -Email Address,電子郵件地址, -Email ID,電子郵件ID, -Email Sent,郵件發送, -Email Template,電子郵件模板, -Enable,啟用, -Enabled,啟用, -End Date,結束日期, -Error Code: {0},錯誤代碼:{0}, -Error Log,錯誤日誌, -Expand All,展開全部, -Fail,失敗, -Failed,失敗, -Fax,傳真, -Feedback,反饋, -Field Name,欄位名稱, -Fieldname,欄位名稱, -Fields,欄位, -First Name,名字, -Frequency,頻率, -From,從, -Further nodes can be only created under 'Group' type nodes,此外節點可以在'集團'類型的節點上創建, -Gender,性別, -Guest,客人, -Half Yearly,每半年, -Hourly,每小時, -Hub Sync ID,集線器同步ID, -Image,圖像, -Image View,圖像查看, -Import Data,導入數據, -Import Log,導入日誌, -Inactive,待用, -Interests,興趣, -Introduction,介紹, -Is Active,啟用, -Is Default,是預設, -Label,標籤, -Language Name,語言名稱, -Leaderboard,排行榜, -Letter Head,信頭, -Level,級別, -Log,日誌, -Logs,日誌, -Maintenance Manager,維護經理, -Maintenance User,維護用戶, -Male,男, -Mandatory,強制性, -Mapping,製圖, -Mapping Type,映射類型, -Medium,介質, -Meeting,會議, -Message Examples,訊息範例, -Middle Name,中間名字, -Middle Name (Optional),中間名(可選), -Monthly,每月一次, -More Information,更多訊息, -Move,舉, -My Account,我的帳戶, -New Contact,新建聯絡人, -Next,下一個, -No Data,無數據, -No address added yet.,尚未新增地址。, -No contacts added yet.,尚未新增聯絡人。, -No items found.,未找到任何項目。, -None,沒有, -Not Permitted,不允許, -Not active,不活躍, -Notes,筆記, -Number,數, -Online,線上, -Operation,作業, -Options,選項, -Owner,業主, -Page Missing or Moved,頁面丟失或移動, -Parameter,參數, -Password,密碼, -Payment Gateway,支付網關, -Payment Gateway Name,支付網關名稱, -Payments,支付, -Period,期間, -Pincode,PIN代碼, -Plan Name,計劃名稱, -Please enable pop-ups,請啟用彈出窗口, -Please select Company,請選擇公司, -Please select {0},請選擇{0}, -Please set Email Address,請設置電子郵件地址, -Portal,門戶, -Portal Settings,門戶網站設置, -Preview,預覽, -Primary,主要的, -Print Format,列印格式, -Print Settings,列印設置, -Print taxes with zero amount,打印零金額的稅, -Private,私人的, -Property,屬性, -Public,公開, -Published,已發行, -Purchase Manager,採購經理, -Purchase Master Manager,採購主檔經理, -Purchase User,購買用戶, -Query Options,查詢選項, -Range,範圍, -Rating,評分, -Recipients,受助人, -Redirect URL,重定向網址, -Reference,參考, -Reference Date,參考日期, -Reference Document,參考文獻, -Reference Document Type,參考文檔類型, -Reference Owner,參考者, -Reference Type,參考類型, -Region,區域, -Rejected,拒絕, -Reopen,重新打開, -Report,報告, -Report Builder,報表生成器, -Report Type,報告類型, -Reports,報告, -Response,回應, -Route,路線, -Sales Manager,銷售經理, -Sales Master Manager,銷售主檔經理, -Sales User,銷售用戶, -Salutation,招呼, -Sample,樣品, -Saved,已儲存, -Scan Barcode,掃描條形碼, -Scheduled,預定, -Secret Key,密鑰, -Select,選擇, -Select DocType,選擇DocType, -Send Now,立即發送, -Sent,已送出, -Series {0} already used in {1},系列{0}已經被應用在{1}, -Service,服務, -Set as Default,設為預設, -Settings,設定, -Shipping,航運, -Short Name,簡稱, -Slideshow,連續播放, -Some information is missing,缺少一些信息, -Source,資源, -Source Name,源名稱, -Standard,標準, -Start Date,開始日期, -Start Import,開始導入, -Stopped,停止, -Subject,主題, -Summary,摘要, -Sunday,星期日, -System Manager,系統管理器, -Target,目標, -Task,任務, -Tax Category,稅種, -Test,測試, -Thank you,謝謝, -The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,您正在查找的頁已丟失。這可能是因為它被移動或有路段中的錯字。, -Timespan,時間跨度, -Traceback,追溯, -URL,網址, -Unsubscribed,退訂, -User,用戶, -User ID,使用者 ID, -Users,用戶, -Validity,合法性, -Website,網站, -Website Manager,網站管理, -Website Settings,網站設定, -Week,週, -Weekdays,平日, -Weekly,每週, -Welcome email sent,歡迎發送電子郵件, -You need to be logged in to access this page,您需要登錄才能訪問該頁面, -old_parent,old_parent, -{0} is mandatory,{0}是強制性的, - to your browser,到你的瀏覽器, -"""Company History""",“公司歷史”, -"""Parent"" signifies the parent table in which this row must be added",“父項”表示在該行必須增加父表, -"""Team Members"" or ""Management""",“團隊成員”或“管理”, -<head> HTML,<head> HTML, -'In Global Search' not allowed for type {0} in row {1},在行 {1} 中不允許類型 {0} 的全域搜索中, -'In List View' not allowed for type {0} in row {1},“在列表視圖中”第{1}行的類型{0}不允許, -(Ctrl + G),(Ctrl + G), -** Failed: {0} to {1}: {2},**失敗:{0}到 {1}:{2}, -**Currency** Master,** 主要貨幣 **, -0 - Draft; 1 - Submitted; 2 - Cancelled,0 - 草案; 1 - 已呈交; 2 - 已取消, -1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent,1 貨幣= [?] 如:1美元= 100美分, -1 comment,1條評論, -1 hour ago,1小時前, -1 minute ago,1分鐘前, -1 month ago,1個月前, -1 year ago,1年以前, -; not allowed in condition,; 條件下不允許, -"

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
","

默認模板 \n

<a用途神社href=""http: ""="""" docs="""" jinja.pocoo.org="""" templates="""">模板和地址的所有領域(包括自定義字段如果有的話)將可 \n <前> <代碼> {{address_line1}}&LT; BR&GT; \n {%,如果address_line2%} {{address_line2}}&LT; BR&GT; { ENDIF% - %} \n {{城市}}&LT; BR&GT; \n {%,如果狀態%} {{狀態}}&LT; BR&GT; {%ENDIF - %} {\n%,如果PIN代碼%} PIN:{{PIN碼}}&LT; BR&GT; {%ENDIF - %} \n {{國家}}&LT; BR&GT; \n {%,如果電話%}電話:{{電話}}&LT; BR&GT; { %ENDIF - %} \n {%,如果傳真%}傳真:{{傳真}}&LT; BR&GT; {%ENDIF - %} \n {%,如果email_id%}電子郵件:{{email_id}}&LT; BR&GT {%ENDIF - %} \n </a用途神社href=""http:>

", -A Lead with this Email Address should exist,與此電子郵件地址的鉛應存在, -A list of resources which the Client App will have access to after the user allows it.
e.g. project,資源的列表,它的客戶端應用程序必須將用戶允許後訪問。
如項目, -A log of request errors,日誌請求錯誤的, -A new account has been created for you at {0},已經在{0}為您創建一個新的帳戶, -A symbol for this currency. For e.g. $,這種貨幣的符號。例如$, -A word by itself is easy to guess.,本身一個字很容易猜到。, -API Endpoint Args,API端點參數, -API Key cannot be regenerated,API密鑰無法重新生成, -API Password,API密碼, -API Secret,API揭秘, -API Username,API用戶名, -ASC,ASC, -About Us Settings,關於我們的設置, -About Us Team Member,關於我們的團隊成員, -Accept Payment,接受付款, -Access Key ID,訪問密鑰ID, -Access Token URL,訪問令牌URL, -Action Failed,操作失敗, -Action Timeout (Seconds),動作超時(秒), -"Actions for workflow (e.g. Approve, Cancel).",流程的操作(如批准、取消)。, -Active Domains,活動域, -Active Sessions,活動會話, -Activity Log,活動日誌, -Activity log of all users.,所有用戶的活動日誌。, -Add / Manage Email Domains.,添加/管理電子郵件域。, -Add A New Rule,添加新的規則, -Add Another Comment,添加另一個評論, -Add Column,添加欄, -Add Contact,增加聯繫人, -Add Contacts,添加聯繫人, -Add Filter,新增過濾器, -Add Group,添加組, -Add New Permission Rule,添加新的權限規則, -Add Review,添加評論, -Add Signature,添加簽名, -Add Subscribers,添加訂閱, -Add Total Row,新增總計行列, -Add Unsubscribe Link,添加退訂鏈接, -Add User Permissions,添加用戶權限, -Add a New Role,添加新角色, -Add a column,添加一列, -Add a comment,新增評論, -Add a tag ...,添加標籤..., -Add all roles,選取所有角色, -Add custom forms.,添加自定義表單。, -Add custom javascript to forms.,添加自定義的JavaScript到表單內。, -Add fields to forms.,將欄位添加到表單。, -Add meta tags to your web pages,將元標記添加到您的網頁, -Add script for Child Table,添加子表的腳本, -Add your own translations,添加您自己的翻譯, -"Added HTML in the <head> section of the web page, primarily used for website verification and SEO",在<head>添加HTML網頁的部分,主要用於網站的驗證和搜索引擎優化, -Adding System Manager to this User as there must be atleast one System Manager,至少要有一名系統管理員,將該用戶設定成系統管理員, -Additional Permissions,額外的權限, -Address Title is mandatory.,地址標題是強制性的。, -Address and other legal information you may want to put in the footer.,地址和其他法律資訊,您可能要放在頁腳。, -Addresses And Contacts,地址和聯繫方式, -Adds a client custom script to a DocType,將客戶端自定義腳本添加到DocType, -Adds a custom field to a DocType,添加自定義字段,以一個DOCTYPE, -Admin,管理員, -Administrator Logged In,管理員登錄, -Administrator accessed {0} on {1} via IP Address {2}.,管理員訪問{0}在{1}通過IP地址{2}。, -Advanced,先進, -Advanced Control,高級控制, -Advanced Search,高級搜索, -Align Labels to the Right,將標籤對齊, -Align Value,對齊值, -All Images attached to Website Slideshow should be public,所有連接到網站幻燈片的圖片應該是公開的, -All customizations will be removed. Please confirm.,所有自定義都將被刪除。請確認。, -"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""",所有可能的工作流狀態和工作流程的作用。 Docstatus選項:0是“拯救”,1“已提交”和2“取消”, -All-uppercase is almost as easy to guess as all-lowercase.,全大寫幾乎一樣容易猜到全部小寫。, -Allocated To,為了分配, -Allow,允許, -Allow Bulk Edit,允許批量修改, -Allow Comments,允許評論, -Allow Consecutive Login Attempts ,允許連續登錄嘗試, -Allow Dropbox Access,讓Dropbox的訪問, -Allow Edit,讓編輯, -Allow Guest to View,允許訪客查看, -Allow Import (via Data Import Tool),允許導入(通過數據導入工具), -Allow Incomplete Forms,允許不完整的表格, -Allow Login After Fail,允許在失敗後登錄, -Allow Login using Mobile Number,允許使用手機號登錄, -Allow Login using User Name,允許使用用戶名登錄, -Allow Modules,允許模塊, -Allow Multiple,允許多個, -Allow Print,允許打印, -Allow Print for Cancelled,允許打印為已取消, -Allow Print for Draft,允許打印草稿, -Allow Read On All Link Options,允許讀取所有鏈接選項, -Allow Rename,允許重新命名, -Allow Roles,允許角色, -Allow Self Approval,允許自我批准, -Allow approval for creator of the document,允許批准文檔的創建者, -Allow events in timeline,允許時間軸中的事件, -Allow in Quick Entry,允許快速輸入, -Allow on Submit,允許在提交, -Allow only one session per user,允許每個用戶只有一個會話, -Allow page break inside tables,允許在表格分頁符, -Allow saving if mandatory fields are not filled,允許保存如果必填字段未填寫, -Allow user to login only after this hour (0-24),允許用戶在幾小時後登入(0 - 24), -Allow user to login only before this hour (0-24),允許用戶在幾小時前登入(0 - 24), -Allowed,允許的, -Allowed In Mentions,允許提及, -"Allowing DocType, DocType. Be careful!",允許的DOCTYPE,DocType 。要小心!, -Already Registered,已註冊, -Also adding the dependent currency field {0},還要添加從屬貨幣字段{0}, -"Always add ""Draft"" Heading for printing draft documents",隨時添加“草案”標題打印文件草案, -Always use Account's Email Address as Sender,始終使用帳戶的電子郵件地址作為發件人, -Always use Account's Name as Sender's Name,始終使用帳戶名稱作為發件人姓名, -Amend,修改, -Amending,修訂, -Amount Based On Field,用量以現場, -Amount Field,金額字段, -Amount must be greater than 0.,量必須大於0。, -An error occured during the payment process. Please contact us.,付款過程中發生錯誤。請聯繫我們。, -An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],一個圖標文件擴展名為.ico。應為16×16像素。使用圖標生成器生成。 [favicon-generator.org], -Ancestors Of,祖先的, -Another transaction is blocking this one. Please try again in a few seconds.,另一個事務阻塞這一個。請稍後再試。, -"Another {0} with name {1} exists, select another name",另一{0}名{1}存在,選擇另一個名字, -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.,可以使用任何基於字符串的打印機語言。編寫原始命令需要了解打印機製造商提供的打印機本機語言。請參閱打印機製造商提供的開發人員手冊,了解如何編寫本機命令。這些命令使用Jinja模板語言在服務器端呈現。, -"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",除了系統管理器,用設置用戶權限的角色權可以為其他用戶的文件類型的權限。, -Api Access,Api訪問, -App,應用, -App Access Key,應用程序訪問密鑰, -App Client ID,應用程序客戶端ID, -App Client Secret,應用程序客戶端密鑰, -App Name,應用程式名稱, -App Secret Key,應用保密密鑰, -App not found,未找到應用程式, -App {0} already installed,已安裝App {0}, -App {0} is not installed,未安裝應用程序{0}, -Append To can be one of {0},追加到可以是一個{0}, -Append To is mandatory for incoming mails,追加到是強制性的傳入郵件, -"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",作為追加對通信本的DocType(必須有田,“狀態”,“主題”), -Applicable Document Types,適用的文件類型, -Apply,應用, -Apply Strict User Permissions,應用嚴格的用戶權限, -Apply To All Document Types,適用於所有文檔類型, -Apply this rule if the User is the Owner,應用此規則如果用戶是業主, -Apply to all Documents Types,適用於所有文檔類型, -Appreciate,欣賞, -Archive,檔案, -Archived,存檔, -Archived Columns,歸檔列, -Are you sure you want to delete the attachment?,您確定要刪除附件?, -Are you sure you want to relink this communication to {0}?,您確定要重新鏈接該通信{0}?, -Are you sure?,你確定嗎?, -Arial,Arial, -"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.",作為最佳實踐,不分配相同的一組權限的規則不同角色。相反,設置多個角色,以相同的用戶。, -Assign Condition,分配條件, -Assign To Users,分配給用戶, -"Assign one by one, in sequence",按順序逐個分配, -Assign to me,分配給我, -Assign to the one who has the least assignments,分配給分配最少的人, -Assigned,分配, -Assigned By,由....指派, -Assigned By Full Name,分配者姓名, -Assigned By Me,指定由我, -Assigned To,指派給, -Assigned To/Owner,指派給/所有者, -Assignment Complete,作業完成, -Assignment Completed,轉讓完成, -Assignment Rule,作業規則, -Assignment Rule User,分配規則用戶, -Assignment Rules,作業規則, -Assignment closed by {0},指派作業由 {0} 結案, -Atleast one field of Parent Document Type is mandatory,家長文件類型的至少一個字段是強制性的, -Attach,附加檔案, -Attach Document Print,附加文件列印, -Attach Image,附上圖片, -Attach Print,附加列印, -Attach file for Import,附加文件進行導入, -Attach files / urls and add in table.,附加文件/網址並添加到表格中。, -Attached To DocType,附加於 DocType, -Attached To Field,附在田地上, -Attached To Name,單身者姓名, -Attachment Limit (MB),附件限制(MB), -Attachment Removed,附件已刪除, -Attempting Connection to QZ Tray...,嘗試連接QZ托盤......, -Attempting to launch QZ Tray...,試圖推出QZ Tray ......, -Auth URL Data,身份驗證URL數據, -Authenticating...,驗證..., -Authentication,認證, -Authentication Apps you can use are: ,您可以使用的驗證應用程序是:, -Authentication Credentials,身份驗證憑據, -Authorization Code,授權碼, -Authorize URL,授權URL, -Auto,汽車, -Auto Email Report,自動電子郵件報告, -Auto Name,自動名稱, -Auto Reply Message,自動回复留言, -Auto assignment failed: {0},自動分配失敗:{0}, -Automatically Assign Documents to Users,自動為用戶分配文檔, -Automation,自動化, -Avatar,頭像, -Avoid dates and years that are associated with you.,避免日期和與你相關的年。, -Avoid recent years.,避免最近幾年。, -Avoid sequences like abc or 6543 as they are easy to guess,避免像ABC或6543的序列,因為它們容易被猜中, -Avoid years that are associated with you.,避免了與你相關的年。, -Awaiting Password,等待密碼, -Away,遠, -Back to Desk,回到辦公桌, -Back to Login,返回登陸, -Background Color,背景顏色, -Background Email Queue,背景電子郵件佇列, -Background Jobs,後台作業, -Background Workers,背景工人, -Backup,備用, -Backup Frequency,備份頻率, -Backup Limit,備份限制, -Backup job is already queued. You will receive an email with the download link,備份作業已經排隊。您將收到一封包含下載鏈接的電子郵件, -Backups,備份, -Banner,橫幅, -Banner HTML,橫幅的HTML, -Banner Image,橫幅圖片, -Banner is above the Top Menu Bar.,橫幅位於選單欄上方。, -Base Distinguished Name (DN),基本專有名稱(DN), -Based on Permissions For User,基於權限之和, -Better add a few more letters or another word,最好加幾個字母或一個字, -Between,之間, -Bio,生物, -Birth Date,生日, -Block Module,封鎖模組, -Block Modules,封鎖模組, -Blocked,受阻, -Blog,部落格, -Blog Category,部落格分類, -Blog Intro,部落格介紹, -Blog Introduction,部落格簡介, -Blog Post,網誌文章, -Blog Settings,部落格設定, -Blog Title,部落格標題, -Blogger,部落格, -Bot,博特, -Both DocType and Name required,既需要的DocType和名稱, -Both login and password required,需要登錄名稱和密碼, -Braintree Settings,Braintree設置, -Braintree payment gateway settings,Braintree支付網關設置, -Brand HTML,品牌的HTML, -Breadcrumbs,麵包屑, -Browser not supported,瀏覽器不支持, -Brute Force Security,蠻力安全, -Build Report,建立報告, -Bulk Delete,批量刪除, -Bulk Edit {0},批量編輯{0}, -Bulk Rename,批次重命名, -Button,按鍵, -Button Help,按鈕幫助, -Button Label,按鈕標籤, -Bypass Two Factor Auth for users who login from restricted IP Address,為受限IP地址登錄的用戶繞過雙因素身份驗證, -Bypass restricted IP Address check If Two Factor Auth Enabled,繞過受限制的IP地址檢查如果雙因素驗證啟用, -CC,CC, -"CC, BCC & Email Template",CC,BCC&電子郵件模板, -Cache Cleared,快取已清除, -Calculate,計算, -Calendar Name,日曆名稱, -Calendar View,日曆視圖, -Call,通話, -Can Read,可閱讀, -Can Share,可以分享, -Can Write,可以寫, -Can't identify open {0}. Try something else.,無法識別開{0}。嘗試別的東西。, -Can't save the form as data import is in progress.,數據導入過程中無法保存表單。, -Cancel {0} documents?,取消{0}個文件?, -Cancelled Document restored as Draft,已取消的文檔已恢復為草稿, -Cannot Remove,無法刪除, -Cannot cancel before submitting. See Transition {0},可以在提交之前不會取消。, -Cannot change docstatus from 0 to 2,不能改變docstatus 0-2, -Cannot change docstatus from 1 to 0,不能改變docstatus從1到0, -Cannot change header content,無法更改標題內容, -Cannot change state of Cancelled Document. Transition row {0},不能改變註銷文件的狀態。, -Cannot change user details in demo. Please signup for a new account at https://erpnext.com,演示中無法更改用戶詳細信息。請在https://erpnext.com註冊一個新帳戶, -Cannot create a {0} against a child document: {1},無法創建{0}針對兒童的文檔:{1}, -Cannot delete Home and Attachments folders,無法刪除首頁和附件的文件夾, -Cannot delete file as it belongs to {0} {1} for which you do not have permissions,無法刪除屬於您沒有權限的{0} {1}的文件, -Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},由於{0} {1}與{2} {3} {4}鏈接,無法刪除或取消, -Cannot delete standard field. You can hide it if you want,無法刪除標準的現場。你可以將其隱藏,如果你想, -Cannot delete {0},無法刪除{0}, -Cannot delete {0} as it has child nodes,無法刪除{0} ,因為它有子節點, -"Cannot edit Standard Notification. To edit, please disable this and duplicate it",無法編輯標准通知。要進行編輯,請禁用並複制它, -Cannot edit a standard report. Please duplicate and create a new report,不能編輯標準的報告。請複製並創建一個新的報告, -Cannot edit cancelled document,無法編輯已取消文件, -Cannot edit standard fields,無法編輯標準欄位, -Cannot have multiple printers mapped to a single print format.,不能將多個打印機映射到單個打印格式。, -Cannot link cancelled document: {0},無法鏈接取消文件:{0}, -Cannot map because following condition fails: ,無法對應,因為以下條件失敗:, -Cannot move row,不能移動排, -Cannot open instance when its {0} is open,無法打開實例時,它的{0}是開放的, -Cannot open {0} when its instance is open,無法打開{0} ,當它的實例是開放的, -Cannot remove ID field,無法刪除ID字段, -Cannot set Notification on Document Type {0},無法在文檔類型{0}上設置通知, -Cannot update {0},無法更新{0}, -Cannot use sub-query in order by,不能使用子查詢,以便, -Cannot {0} {1},無法{0} {1}, -Capitalization doesn't help very much.,資本沒有太大幫助。, -Card Details,卡詳情, -Categorize blog posts.,分類博客文章。, -Category Description,類別說明, -Cent,一分錢, -"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.",某些文件,如發票,一旦定稿後不應更改。對這類文件來說定稿稱為提交。您可以限制哪些角色可以提交。, -Chain Integrity,鏈完整性, -Chaining Hash,鏈接哈希, -Change Label (via Custom Translation),更改標籤(通過自定義轉換), -Change Password,更改密碼, -"Change field properties (hide, readonly, permission etc.)",更改欄位屬性(隱藏,唯讀權限等), -Chart Name,圖表名稱, -Chart Options,圖表選項, -Chart Source,圖表來源, -Chart Type,圖表類型, -Charts,圖表, -Chat,聊, -Chat Operators,聊天運營商, -Chat Profile,聊天檔案, -Chat Profile for User {0} exists.,用戶{0}的聊天配置文件存在。, -Chat Room Name,聊天室名稱, -Chat Room User,聊天室用戶, -Chat Type,聊天類型, -Chat messages and other notifications.,聊天訊息和其他通知。, -Check,校驗, -Check Request URL,檢查請求URL, -"Check columns to select, drag to set order.",檢查列選擇,拖放設置順序。, -Check this if you are testing your payment using the Sandbox API,檢查這個,如果你正在測試使用沙盒API付款, -Check this to pull emails from your mailbox,勾選此選項,則從你的郵箱取出電子郵件地址, -Check which Documents are readable by a User,勾選那些文件是用戶可讀取的, -Checking one moment,檢查一個時刻, -Checksum Version,校驗版本, -Child Tables are shown as a Grid in other DocTypes,子表在其他DocType中顯示為網格, -Choose authentication method to be used by all users,選擇所有用戶使用的身份驗證方法, -Clear Error Logs,清除錯誤日誌, -Clear User Permissions,清除用戶權限, -"Clearing end date, as it cannot be in the past for published pages.",清除結束日期,因為發布的頁面不能在過去。, -Click here to post bugs and suggestions,點擊這裡發布錯誤和建議, -Click here to verify,點擊這裡核實, -Click on the link below to complete your registration and set a new password,點擊下面的鏈接完成註冊,並設定新密碼, -Click on the link below to download your data,點擊下面的鏈接下載您的數據, -Click on the link below to verify your request,點擊下面的鏈接驗證您的請求, -Click table to edit,點擊表格編輯, -Click to Set Filters,單擊以設置過濾器, -Clicked,點擊, -Client Credentials,客戶端憑證, -Client Information,客戶信息, -Client Script,客戶端腳本, -Client URLs,客戶端網址, -Client side script extensions in Javascript,在JavaScript客戶端腳本擴展, -Collapsible,可折疊, -Collapsible Depends On,可折疊取決於, -Column,柱, -Column {0} already exist.,列{0}已經存在。, -Column Break,分欄符, -Column Labels:,列標籤:, -Column Name,列名稱, -Column Name cannot be empty,列名不能為空, -Columns based on,基於列, -Combination of Grant Type ({0}) and Response Type ({1}) not allowed,授予類型( {0} )和響應類型( {1} )的組合不允許, -Comment By,評論人, -Comment Email,評論電郵, -Comment Type,註釋類型, -Comment can only be edited by the owner,評論只能由所有者進行編輯, -Commented on {0}: {1},評論{0}:{1}, -Comments and Communications will be associated with this linked document,評論與通訊將與此鏈接的文檔關聯, -Comments cannot have links or email addresses,評論不能包含鏈接或電子郵件地址, -Common names and surnames are easy to guess.,常見名字和姓氏很容易被猜到。, -Communicated via {0} on {1}: {2},通過傳達{0}在{1} {2}, -Communication Type,通信類型, -Company History,公司歷史, -Company Introduction,公司簡介, -Compiled Successfully,編譯成功, -Complete By,完成, -Complete Registration,完成註冊, -Complete Setup,完成安裝, -Completed By,完成, -Compose Email,寫郵件, -Condition Detail,狀況細節, -Conditions,條件, -Configure Chart,配置圖表, -Configure Charts,配置圖表, -Confirm,確認, -Confirm Deletion of Data,確認刪除數據, -Confirm Request,確認申請, -Confirm Your Email,確認您的電子郵件, -Confirmed,確認, -Connected to QZ Tray!,連接到QZ托盤!, -Connection Name,連接名稱, -Connection Success,連接成功, -Connection lost. Some features might not work.,連接丟失。某些功能可能無法使用。, -Connector Name,連接器名稱, -Connector Type,連接器類型, -Contact Us Settings,聯絡我們的設定, -"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",聯絡人選項,如“銷售查詢,支持查詢”等每一個新行或以逗號分隔。, -Contacts,往來, -Content (HTML),內容(HTML), -Content (Markdown),內容(降價), -Content Hash,內容Hash值, -Content web page.,內容的網頁。, -Conversation Tones,對話音, -Copyright,版權, -Core DocTypes cannot be customized.,核心DocType無法自定義。, -Could not connect to outgoing email server,無法連接到外發郵件服務器, -Could not find {0} in {1},在{1}中找不到{0}, -Could not identify {0},無法識別{0}, -Count,計數, -Country Name,國家名稱, -County,縣, -Create Chart,創建圖表, -Create New,新建立, -Create Post,創建帖子, -Create User Email,創建用戶電子郵件, -Create a New Format,建立新格式, -Create a new record,創建一個新記錄, -Create a new {0},建立一個新的{0}, -Create and Send Newsletters,建立和發送簡訊, -Create and manage newsletter,創建和管理簡報, -Created,創建, -Created Custom Field {0} in {1},創建自定義欄位{0} {1}, -Created On,創建於, -Criticism,批評, -Criticize,批評, -Ctrl + Up,Ctrl +向上, -Ctrl+Enter to add comment,Ctrl + Enter以添加評論, -Currency Name,貨幣名稱, -Currency Precision,貨幣精確度, -Current Mapping,當前映射, -Current Mapping Action,當前映射行為, -Current Mapping Delete Start,當前映射刪除開始, -Current Mapping Start,當前映射開始, -Current Mapping Type,當前映射類型, -Currently Viewing,目前正在觀看, -Currently updating {0},當前正在更新{0}, -Custom,自訂, -Custom Base URL,自定義基準網址, -Custom CSS,自定義CSS, -Custom DocPerm,自定義DocPerm, -Custom Field,自定義欄位, -Custom Fields can only be added to a standard DocType.,自定義字段只能添加到標準DocType。, -Custom Fields cannot be added to core DocTypes.,自定義字段無法添加到核心DocType。, -Custom Format,自定義格式, -Custom HTML Help,自定義HTML幫助, -Custom JS,自定義JS, -Custom Menu Items,自定義菜單項, -Custom Report,自定義報告, -Custom Reports,自定義報告, -Custom Role,自定義角色, -Custom Script,自定義腳本, -Custom Sidebar Menu,自定義工具欄菜單, -Custom Translations,翻譯定制, -Customizations Reset,自定義重置, -Customizations for {0} exported to:
{1},{0}的自定義已導出到:
{1}, -Customize Form,自定義表單, -Customize Form Field,自定義表單域, -"Customize Label, Print Hide, Default etc.",自定義標籤,列印隱藏,預設值等。, -"Customized Formats for Printing, Email",自定義列印及電子郵件的格式,, -Customized HTML Templates for printing transactions.,定製列印交易用之 HTML 模板。, -Cut,切, -Daily Event Digest is sent for Calendar Events where reminders are set.,在日曆事件中被標註提醒的事件會列入每日事件摘要的郵件內。, -Danger,危險, -Dashboard Chart,儀表板圖表, -Dashboard Chart Link,儀表板圖錶鍊接, -Dashboard Chart Source,儀表板圖表來源, -Dashboard Name,儀表板名稱, -Dashboards,儀表板, -Data,數據, -Data Export,數據導出, -Data Import,數據導入, -Data Import Template,數據導入模板, -Data Migration,數據遷移, -Data Migration Connector,數據遷移連接器, -Data Migration Mapping,數據遷移映射, -Data Migration Mapping Detail,數據遷移映射細節, -Data Migration Plan,數據遷移計劃, -Data Migration Plan Mapping,數據遷移計劃映射, -Data Migration Run,數據遷移運行, -Data missing in table,在表中的數據丟失, -Database Engine,資料庫引擎, -Database Name,數據庫名稱, -Date and Number Format,日期和數字格式, -Date {0} must be in format: {1},日期{0}必須採用格式:{1}, -Dates are often easy to guess.,日期通常很容易猜到。, -Day of Week,星期幾, -Days After,幾天之後, -Days Before,前幾天, -Days Before or After,日前或後, -"Dear System Manager,",親愛的系統管理器,, -"Dear User,",親愛的用戶,, -Dear {0},親愛的{0}, -Default Address Template cannot be deleted,預設地址模板不能被刪除, -Default Inbox,預設收件匣, -Default Incoming,預設傳入信箱, -Default Outgoing,預設傳出, -Default Print Format,預設列印格式, -Default Print Language,默認打印語言, -Default Redirect URI,默認重定向URI, -Default Role at Time of Signup,在註冊時間默認角色, -Default Sending,預設發送, -Default Sending and Inbox,預設發送和收件匣, -Default Sort Field,默認排序字段, -Default Sort Order,默認排序順序, -Default Value,預設值, -"Default: ""Contact Us""",預設:“聯絡我們”, -DefaultValue,預設值, -Define workflows for forms.,定義表單流程。, -Defines actions on states and the next step and allowed roles.,定義了國家行動和下一步和允許的角色。, -Defines workflow states and rules for a document.,定義文檔工作流狀態和規則。, -Delayed,延遲, -Delete Data,刪除數據, -Delete comment?,刪除評論?, -Delete this record to allow sending to this email address,刪除此記錄允許發送此郵件地址, -Delete {0} items permanently?,刪除{0}項目永久?, -Deleted,刪除, -Deleted DocType,刪除的DocType, -Deleted Document,刪除的文檔, -Deleted Documents,已刪除的文件, -Deleted Name,刪除名稱, -Deleting {0},刪除{0}, -Depends On,取決於, -Descendants Of,後裔, -Desk,辦公桌, -Desk Access,台訪問, -Desktop Icon,桌面圖標, -Desktop Icon already exists,桌面圖標已經存在, -Developer,開發者, -Did not add,沒有添加, -Did not cancel,沒有取消, -Did not find {0} for {0} ({1}),沒有找到{0} {0} ( {1} ), -Did not remove,沒有刪除, -"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",本文件可存在的不同「狀態」。如「開啟」、「延後批准」等。, -Direct room with {0} already exists.,已存在{0}的直接房間。, -Disable Auto Refresh,禁用自動刷新, -Disable Count,禁用計數, -Disable Customer Signup link in Login page,禁止客戶在登入頁面的註冊連結, -Disable Prepared Report,禁用準備報告, -Disable Report,禁用報告, -Disable SMTP server authentication,禁用SMTP服務器驗證, -Disable Sidebar Stats,禁用補充工具欄統計信息, -Disable Signup,禁止註冊, -Disable Standard Email Footer,禁用標準電子郵件頁尾, -Discard,丟棄, -Display,顯示, -Display Depends On,顯示的內容取決於, -Do not allow user to change after set the first time,在首次設定後不允許用戶更改, -Do not edit headers which are preset in the template,不要編輯模板中預設的標題, -Do not send Emails,不要發送電子郵件, -Doc Events,文件活動, -Doc Status,文件狀態, -DocField,DocField, -DocPerm,DocPerm, -DocShare,DocShare, -DocType {0} provided for the field {1} must have atleast one Link field,為字段{1 }提供的DocType {0}必須至少有一個Link字段, -DocType can not be merged,DocType文檔類型不能合併, -DocType can only be renamed by Administrator,DocType只能由管理員進行重命名, -DocType is a Table / Form in the application.,DOCTYPE是一應用程式中的表格/表單。, -DocType must be Submittable for the selected Doc Event,DocType必須為所選Doc事件提交, -DocType on which this Workflow is applicable.,DocType文檔類型上這個工作流是適用的。, -"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DocType的名稱應以字母開始,它只能由字母,數字,空格和下劃線組成。, -Doctype required,需要Doctype, -Document,文件, -Document Follow,文件關注, -Document Queued,文檔排隊, -Document Restored,文件恢復, -Document Share Report,文檔分享舉報, -Document States,文件規定, -Document Type is not importable,憑證類型不可導入, -Document Type is not submittable,文檔類型不可提交, -Document Type to Track,要跟踪的文檔類型, -Document Types,文檔類型, -Document can't saved.,文件無法保存。, -Document {0} has been set to state {1} by {2},文檔{0}已被{2}設置為狀態{1}, -Documents,文件, -Documents assigned to you and by you.,分配給您和您的文檔。, -Domain Settings,域設置, -Domains HTML,域HTML, -"Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field",不要HTML編碼的HTML標籤,如<SCRIPT>或者就像字符<或>,因為他們可以在此字段中故意使用, -Don't Override Status,不要覆蓋狀態, -Don't create new records,不要創建新的記錄, -Don't have an account? Sign up,還沒有帳號?註冊, -"Don't know, ask 'help'",不知道,問'幫助', -Download Data,下載數據, -Download Files Backup,下載文件備份, -Download Link,下載鏈接, -Download Report,下載報告, -Download Your Data,下載您的數據, -Download link for your backup will be emailed on the following email address: {0},下載連接,您的備份將以電子郵件發送到以下電子郵件地址:{0}, -Download with Data,下載資料, -Drag and Drop tool to build and customize Print Formats.,拖放工具來構建和定製列印格式。, -Drag elements from the sidebar to add. Drag them back to trash.,從側邊欄拖動的元素添加。他們拖回到垃圾桶。, -Dropbox Access Key,Dropbox Access Key, -Dropbox Access Secret,Dropbox的訪問秘密, -Dropbox Access Token,Dropbox訪問令牌, -Dropbox Settings,Dropbox的設置, -Dropbox Setup,Dropbox的設置, -Dropbox access is approved!,Dropbox的訪問被批准!, -Dropbox backup settings,Dropbox的備份設置, -Duplicate Filter Name,重複的過濾器名稱, -Dynamic Link,動態鏈接, -Dynamic Report Filters,動態報告過濾器, -Edit Auto Email Report Settings,修改電子郵件報告設置, -Edit Custom HTML,編輯自定義HTML, -Edit DocType,編輯的DocType, -Edit Filter,編輯過濾器, -Edit Format,編輯格式, -Edit HTML,編輯HTML, -Edit Heading,編輯標題, -Edit Properties,編輯屬性, -Edit to add content,編輯添加內容, -Edit {0},編輯{0}, -Editable Grid,編輯網格, -Editing Row,編輯行, -Eg. smsgateway.com/api/send_sms.cgi,例如:。 smsgateway.com / API / send_sms.cgi, -Email Account Name,電子郵件帳戶名稱, -Email Account added multiple times,電子郵件帳戶多次添加, -Email Addresses,電子郵件地址, -Email Domain,電子郵件域名, -"Email Domain not configured for this account, Create one?",電子郵件域名未配置此帳戶,創建一個嗎?, -Email Flag Queue,電子郵件標誌隊列, -Email Footer Address,電子郵件地址頁尾, -Email Group,電子郵件組, -Email Group List,電子郵件組列表, -Email Group Member,電子郵件組成員, -Email Login ID,電子郵件登錄ID, -Email Queue,電子郵件隊列, -Email Queue Recipient,電子郵件收件人排隊, -Email Queue records.,電子郵件隊列記錄。, -Email Reply Help,電郵答复幫助, -Email Rule,電子郵件規則, -Email Server,電子郵件伺服器, -Email Settings,電子郵件設定, -Email Signature,電子郵件簽名, -Email Status,電子郵件狀態, -Email Sync Option,電子郵件同步選項, -Email Templates for common queries.,常見查詢的電子郵件模板。, -Email To,發送電子郵件給, -Email Unsubscribe,電子郵件退訂, -Email has been marked as spam,電子郵件已被標記為垃圾郵件, -Email has been moved to trash,電子郵件已被移至垃圾桶, -Email not sent to {0} (unsubscribed / disabled),電子郵件不會被發送到{0}(退訂/禁用), -Email not verified with {0},電子郵件未通過{0}驗證, -Emails are muted,電子郵件是靜音模式, -Emails will be sent with next possible workflow actions,電子郵件將與下一個可能的工作流操作一起發送, -Embed image slideshows in website pages.,嵌入圖像的幻燈片中的網頁。, -Enable / Disable Domains,啟用/禁用域, -Enable Auto Reply,啟用自動回复, -Enable Automatic Backup,啟用自動備份, -Enable Chat,啟用聊天, -Enable Comments,啟用評論, -Enable Incoming,啟用傳入, -Enable Outgoing,啟用外, -Enable Password Policy,啟用密碼策略, -Enable Print Server,啟用打印服務器, -Enable Raw Printing,啟用原始打印, -Enable Report,啟用報告, -Enable Scheduled Jobs,啟用預定作業, -Enable Social Login,啟用社交登錄, -Enable Two Factor Auth,啟用雙因素認證, -Enabled email inbox for user {0},已為用戶{0}啟用電子郵件收件箱, -"Encryption key is invalid, Please check site_config.json",加密密鑰無效,請檢查site_config.json, -End Date Field,結束日期字段, -End Date cannot be before Start Date!,結束日期不能在開始日期之前!, -Endpoint URL,端點URL, -Energy Point Log,能量點日誌, -Energy Point Rule,能量點規則, -Energy Point Settings,能量點設置, -Energy Points,能量點, -Enter Email Recipient(s),輸入電子郵件收件人, -Enter Form Type,輸入表單類型, -"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"".",輸入默認值字段(鍵)和值。如果你為一個字段中添加多個值,第一個將有所回升。這些默認值也用於設置“匹配”權限規則。要查看字段列表,進入“自定義窗體”。, -Enter folder name,輸入文件夾名稱, -"Enter keys to enable login via Facebook, Google, GitHub.",Enter鍵啟用透過Facebook、Google、GitHub登錄。, -Enter python module or select connector type,輸入python模塊或選擇連接器類型, -"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",在這裡輸入靜態URL參數(如稱發件人= ERPNext,用戶名= ERPNext,密碼= 1234等), -Enter url parameter for message,輸入url參數的訊息, -Enter url parameter for receiver nos,輸入URL參數的接收器號, -Enter your password,輸入密碼, -Entity Name,實體名稱, -Equals,等號, -Error Message,錯誤信息, -Error Report,錯誤報告, -Error Snapshot,錯誤快照, -Error in Custom Script,錯誤自定義腳本, -Error in Notification,通知錯誤, -Error in Notification: {},通知錯誤:{}, -Error while connecting to email account {0},連接到電子郵件帳戶{0}時出錯, -Error while evaluating Notification {0}. Please fix your template.,評估通知{0}時出錯。請修復您的模板。, -Error: Document has been modified after you have opened it,錯誤:你已經打開了它之後,文件已被修改, -Error: Value missing for {0}: {1},錯誤:{0}缺少值:{1}, -Errors in Background Events,在後台活動錯誤, -Event Category,活動類別, -Event Participants,活動參與者, -Event Type,事件類型, -Event and other calendars.,事件和其他日曆。, -Events in Today's Calendar,活動在今天的日曆, -Everyone,大家, -Example,例, -Example Email Address,例如電子郵件地址, -Excel,高強, -Exception Type,異常類型, -Execution Time: {0} sec,執行時間:{0}秒, -Expert,專家, -Expiration time,到期時間, -Expire Notification On,過期通知, -Expires In,過期日期在, -Expiry time of QR Code Image Page,QR碼圖像頁面的到期時間, -Export All {0} rows?,導出所有{0}行?, -Export Custom Permissions,導出自定義權限, -Export Customizations,導出自定義, -Export Data,導出數據, -Export Data in CSV / Excel format.,以CSV / Excel格式導出數據。, -Export Report: {0},出口報告:{0}, -Expose Recipients,公開收件人, -"Expression, Optional",表達,可選, -Facebook,Facebook, -Failed to complete setup,無法完成設置, -Failed to connect to server,無法連接服務器, -Failed while amending subscription,修改訂閱時失敗, -FavIcon,網站圖標, -Feedback Request,反饋請求, -Fetch If Empty,獲取如果為空, -Fetch Images,獲取圖像, -Fetch attached images from document,從文檔中獲取附加圖像, -"Field ""route"" is mandatory for Web Views",Web視圖必須使用字段“路由”, -"Field ""value"" is mandatory. Please specify value to be updated",場“價值”是強制性的。請指定值進行更新, -Field Description,欄位說明, -Field Maps,現場地圖, -Field Type,欄位類型, -"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)",代表交易的工作流程狀態的欄位(如果不存在,一個新的隱藏的自定義欄位將被創建), -Field to Track,追踪領域, -Field type cannot be changed for {0},{0}不能更改字段類型, -Field {0} not found.,欄位{0}找不到。, -Fieldname is limited to 64 characters ({0}),字段名被限制為64個字符({0}), -Fieldname not set for Custom Field,自定義欄位之欄位名稱未設定, -Fieldname which will be the DocType for this link field.,字段名這將是在DOCTYPE這個鏈接字段。, -Fieldname {0} cannot have special characters like {1},字段名{0}不能包含{1}之類的特殊字符, -Fieldname {0} conflicting with meta object,字段名{0}與元對象衝突, -Fields Multicheck,字段Multicheck, -"Fields separated by comma (,) will be included in the ""Search By"" list of Search dialog box",字段以逗號分隔(,)將被列入“通過搜索”的搜索對話框的列表, -Fieldtype,FIELDTYPE, -Fieldtype cannot be changed from {0} to {1} in row {2},列{2}的欄位類型不能從{0}改變為{1}, -File '{0}' not found,找不到文件“{0}”, -File Backup,文件備份, -File Type,文件類型, -File URL,文件URL, -File Upload,上傳文件, -File Upload Disconnected. Please try again.,文件上傳已斷開連接。請再試一次。, -File Upload in Progress. Please try again in a few moments.,文件上傳正在進行中。請稍後重試。, -File backup is ready,文件備份就緒, -File not attached,文件未附, -File size exceeded the maximum allowed size of {0} MB,文件大小超過{0} MB的最大允許大小, -File too big,文件太大了, -Files,檔, -Filter,過濾, -Filter Data,過濾數據, -Filter List,過濾器列表, -Filter Meta,過濾元, -Filter Name,過濾器名稱, -Filter Values,過濾值, -Filter must be a tuple or list (in a list),過濾器必須是元組或列表(在列表中), -"Filter must have 4 values (doctype, fieldname, operator, value): {0}",過濾器必須有4個值(doctype,fieldname,operator,value):{0}, -Filter...,過濾器..., -"Filtered by ""{0}""",通過過濾“{0}”, -Filters Display,顯示過濾器, -Filters JSON,過濾JSON, -Filters saved,過濾器保存, -Find {0} in {1},在{1}中查找{0}, -First Level,第一級, -First Success Message,第一個成功消息, -First Transaction,第一筆交易, -First data column must be blank.,第一個數據列必須為空。, -First set the name and save the record.,首先設置名稱並保存記錄。, -Float,浮動, -Float Precision,浮點數精度, -Fold,折, -Fold can not be at the end of the form,折疊不能在表單的端, -Fold must come before a Section Break,折疊一定要來一個分節符前, -Folder,文件夾, -Folder name should not include '/' (slash),文件夾名稱不應包含“/”(斜杠), -Folder {0} is not empty,文件夾{0}非空, -Follow,跟隨, -Font Size,字體大小, -Fonts,字體, -Footer,頁腳, -Footer HTML,頁腳HTML, -Footer Items,頁腳項目, -Footer will display correctly only in PDF,頁腳僅以PDF格式正確顯示, -For Document Type,對於文檔類型, -"For Links, enter the DocType as range.\nFor Select, enter list of Options, each on a new line.",對於鏈接,輸入文檔類型的範圍。對於選擇,輸入選項列表,每一個新的生產線。, -For User,對於用戶, -For Value,為價值, -"For currency {0}, the minimum transaction amount should be {1}",對於貨幣{0},最小交易金額應為{1}, -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.,例如,如果你取消和修改INV004將成為一個新的文檔INV004-1。這可以幫助您跟踪每一項修正案。, -"For example: If you want to include the document ID, use {0}",例如:如果要包含文檔ID,請使用{0}, -"For updating, you can update only selective columns.",對於更新,您可以更新只選擇列。, -For {0} at level {1} in {2} in row {3},{0}在水平{1}的{2}行{3}, -Force Show,力量秀, -Forgot Password,忘記密碼, -Forgot Password?,忘了密碼?, -Form Customization,表單自定義, -Form Settings,表單設置, -Format Data,格式數據, -Forward To Email Address,轉發到郵件地址, -Fraction,分數, -Fraction Units,部分單位, -Frappe,冰咖啡, -Friendly Title,友情標題, -From Date Field,從日期字段, -From Document Type,從文檔類型, -From Full Name,從全名, -Full Page,全頁, -Fw: {0},Fw:{0}, -GMail,GMail的, -Gantt,甘特圖, -Gateway,網關, -Gateway Controller,網關控制器, -Gateway Settings,網關設置, -Generate Keys,生成密鑰, -Generate New Report,生成新報告, -Geo,地理, -Get Alerts for Today,買到今天通知, -Get Contacts,獲取聯繫人, -Get Fields,獲得領域, -Get your globally recognized avatar from Gravatar.com,讓您的全球公認的化身,從Gravatar.com, -GitHub,GitHub上, -Give Review Points,給予評論點, -Global Unsubscribe,全球退訂, -Go to the document,轉到文檔, -Go to this URL after completing the form (only for Guest users),完成表單後轉到此網址(僅限訪客用戶), -Go to {0},轉到{0}, -Go to {0} List,轉到{0}列表, -Go to {0} Page,轉到{0}頁面, -Google,Google, -Google Analytics ID,Google Analytics(分析)的ID, -Google Calendar ID,Google日曆ID, -Google Font,谷歌字體, -Google Services,Google服務, -Grant Type,格蘭特類型, -Group Name,團隊名字, -Group name cannot be empty.,組名不能為空。, -Groups of DocTypes,文檔類型的組, -HTML Editor,HTML編輯器, -"HTML Header, Robots and Redirects",HTML標頭,機器人和重定向, -HTML for header section. Optional,標題區塊的HTML。可選, -Has Role,有作用, -Has Web View,具有Web視圖, -Have an account? Login,有一個賬戶?登錄, -Header,頁首, -Header HTML,標題HTML, -Header HTML set from attachment {0},從附件{0}設置的標頭HTML, -Header Image,標題圖像, -Headers,頭, -Heading,標題, -Help Articles,幫助文章, -Help Category,幫助分類, -Help on Search,搜索幫助, -"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",說明:要鏈接到另一筆在系統中的記錄,使用「#Form/Note/[Note Name]」建立鏈接。(不要使用的「http://」), -Helvetica,黑體, -Hi {0},{0}, -Hide Copy,隱藏副本, -Hide Footer Signup,隱藏頁腳註冊, -Hide Sidebar and Menu,隱藏補充工具欄和菜單, -Hide Standard Menu,隱藏標準菜單, -Hide Weekends,隱藏週末, -Hide details,隱藏詳情, -Hide footer in auto email reports,在自動電子郵件報告中隱藏頁腳, -Higher priority rule will be applied first,首先應用更高優先級的規則, -Highlight,突出, -"Hint: Include symbols, numbers and capital letters in the password",提示:在密碼中加入符號,數字和大寫字母, -Home Page,首頁, -Home Settings,家庭設置, -Home/Test Folder 1,首頁/測試文件夾1, -Home/Test Folder 1/Test Folder 3,首頁/測試文件夾1 /測試文件夾3, -Home/Test Folder 2,首頁/測試文件夾2, -Host,主辦, -Hostname,主機名, -"How should this currency be formatted? If not set, will use system defaults",此貨幣使用何種格式?如果沒有設定,將使用系統預設值。, -I found these: ,我發現這些:, -ID (name) of the entity whose property is to be set,其屬性是要設定的實體的ID(名稱), -Icon will appear on the button,圖標將顯示在按鈕上, -Identity Details,身份詳情, -"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",如果選中了“嚴格用戶權限”,並為用戶定義了“用戶權限”,則該鏈接的值為空的所有文檔將不會顯示給該用戶, -If Checked workflow status will not override status in list view,如果經過工作流狀態不會覆蓋列表視圖狀態, -If Owner,如果業主, -"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色沒有訪問權限級別為0級,那麼更高的水平是沒有意義的。, -"If checked, all other workflows become inactive.",如果選中,所有其他的工作流程變得無效。, -"If checked, this field will be not overwritten based on Fetch From if a value already exists.",如果選中,則如果值已存在,則不會基於Fetch From覆蓋此字段。, -"If checked, users will not see the Confirm Access dialog.",如果選中,用戶不會看到確認Access對話框。, -"If disabled, this role will be removed from all users.",如果禁用了,這個角色將會從所有用戶中刪除。, -"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",如果啟用,用戶可以使用雙因素身份驗證從任何IP地址登錄,也可以在系統設置中為所有用戶設置, -"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",如果啟用,所有用戶都可以使用雙因素身份驗證從任何IP地址登錄。這也可以只為用戶頁面中的特定用戶設置, -"If enabled, changes to the document are tracked and shown in timeline",如果啟用,則會跟踪對文檔的更改並在時間軸中顯示, -"If enabled, document views are tracked, this can happen multiple times",如果啟用,則會跟踪文檔視圖,這可能會多次發生, -"If enabled, the document is marked as seen, the first time a user opens it",如果啟用,則在用戶第一次打開文檔時將文檔標記為已顯示, -"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.",如果啟用,密碼強度將根據最低密碼分數值執行。值2為中等強度,4為非常強。, -"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",如果啟用,從限制IP地址登錄的用戶將不會被提示輸入雙因素身份驗證, -"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",如果啟用,用戶每次登錄時都會收到通知。如果沒有啟用,用戶只會收到一次通知。, -If non standard port (e.g. 587),如果非標準端口(如587), -"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",如果非標準端口(例如587)。如果在Google Cloud上,請嘗試使用端口2525。, -"If not set, the currency precision will depend on number format",如果未設置,則貨幣精度將取決於數字格式, -If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n,如果條件滿足,用戶將獲得積分獎勵。例如。 doc.status =='已關閉', -"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",如果用戶有任何檢查的作用,那麼用戶就變成了“系統用戶”。 “系統用戶”訪問桌面, -"If these instructions where not helpful, please add in your suggestions on GitHub Issues.",如果這些指示沒有幫助,請加在GitHub Issues提出你的建議。, -"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",如果選中此選項,將導入包含有效數據的行,並將無效行轉儲到新文件中以供稍後導入。, -If user is the owner,如果用戶是所有者, -"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",如果要更新,請選擇“覆蓋”其他現有行不會被刪除。, -If you are updating/overwriting already created records.,如果您正在更新/覆蓋已經創建的記錄。, -"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",如果您上傳新的記錄,“命名系列”變成強制性的,如果存在的話。, -"If you are uploading new records, leave the ""name"" (ID) column blank.",如果您上傳新的記錄,留下了“名”(ID)欄為空白。, -If you don't want to create any new records while updating the older records.,如果您不想在更新舊記錄時創建新記錄。, -"If you set this, this Item will come in a drop-down under the selected parent.",如果您設定此項,這個項目會存在於選定的父物件的下拉選單中。, -"If you think this is unauthorized, please change the Administrator password.",如果你認為這是未經授權的,請更改管理員密碼。, -"If your data is in HTML, please copy paste the exact HTML code with the tags.",如果你的數據是HTML,請複製粘貼的標籤準確的HTML代碼。, -Ignore User Permissions,忽略用戶權限, -Ignore XSS Filter,忽略XSS過濾器, -Ignore attachments over this size,忽略附件超過此大小的, -Ignore encoding errors,忽略編碼錯誤, -Ignored: {0} to {1},忽略:{0}到{1}, -Illegal Access Token. Please try again,非法訪問令牌。請再試一次, -Illegal Document Status for {0},{0}的非法文檔狀態, -Image Field,現場圖片, -Image Link,圖片鏈接, -Image field must be a valid fieldname,圖像字段必須是有效的字段名, -Image field must be of type Attach Image,圖像字段的類型必須為附著圖像, -Images,圖片, -Implicit,含蓄, -Import,輸入, -Import Email From,輸入電子郵件從, -Import Status,導入狀態, -Import Subscribers,進口認購, -Import Zip,導入郵編, -In Filter,在過濾器, -In Global Search,在全球搜索, -In Grid View,在網格視圖, -In Hours,以小時為單位, -In List View,在列表視圖, -In Preview,在預覽中, -In Reply To,在回復中, -In Standard Filter,在標準過濾器, -In Valid Request,非法請求, -In points. Default is 9.,以點為單位。預設值是9。, -Include Search in Top Bar,包括在頂欄搜索, -"Include symbols, numbers and capital letters in the password",在密碼中加入符號,數字和大寫字母, -Incoming email account not correct,收到的電子郵件帳戶不正確, -Incomplete login details,登錄詳細信息不完整, -Incorrect User or Password,不正確的用戶或密碼, -Incorrect Verification code,驗證碼不正確, -Incorrect value in row {0}: {1} must be {2} {3},不正確的值在列{0} : {1}必須是{2} {3}, -Incorrect value: {0} must be {1} {2},不正確的值:{0}必須是{1} {2}, -Index,指數, -Info,資訊, -Info:,資訊:, -Initial Sync Count,初始同步計數, -InnoDB,InnoDB的, -Insert Above,插入以上, -Insert After,於後方插入, -Insert After cannot be set as {0},插入不能設定為後{0}, -"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",插入自定義字段“{0}”提到的後場“{1}”,標記為“{2}”不存在, -Insert Below,插入下方, -Insert Style,插入樣式, -Insert new records,插入新記錄, -Instructions Emailed,電子郵件說明, -Insufficient Permission for {0},{0}的權限不足, -Int,詮釋, -Integration Request,集成請求, -Integration Request Service,集成請求服務, -Integration Type,整合類型, -Integrations,整合, -Integrations can use this field to set email delivery status,整合可以使用此欄位來設定郵件發送狀態, -Internal Server Error,內部服務器錯誤, -Internal record of document shares,文件股內部記錄, -Introduce your company to the website visitor.,對網站訪客介紹貴公司。, -Introductory information for the Contact Us Page,聯絡我們頁面的介紹資訊, -Invalid,無效, -"Invalid ""depends_on"" expression",“depends_on”表達式無效, -Invalid Access Key ID or Secret Access Key.,無效的訪問密鑰ID或秘密訪問密鑰。, -Invalid CSV Format,CSV格式無效。, -Invalid Home Page,無效的主頁, -Invalid Link,鏈接無效, -Invalid Login Token,無效的登錄令牌, -Invalid Login. Try again.,登錄無效。再試一次。, -Invalid Mail Server. Please rectify and try again.,無效的郵件服務器。請糾正,然後再試一次。, -Invalid Outgoing Mail Server or Port,無效的發送郵件服務器或端口, -Invalid Output Format,無效的輸出格式, -Invalid Password,無效的密碼, -Invalid Password:,無效的密碼:, -Invalid Request,無效請求, -Invalid Search Field {0},無效的搜索字段{0}, -Invalid Subscription,訂閱無效, -Invalid Token,令牌無效, -Invalid User Name or Support Password. Please rectify and try again.,無效的用戶名或支持密碼。請糾正,然後再試一次。, -Invalid column,無效的列, -Invalid field name {0},字段名稱{0}無效, -Invalid fieldname '{0}' in autoname,在自動命名無效字段名“{0}”, -Invalid file path: {0},無效的文件路徑:{0}, -Invalid login or password,無效的登錄名或密碼, -Invalid module path,無效的模塊路徑, -Invalid naming series (. missing),無效的命名序列(失踪), -Invalid payment gateway credentials,無效的支付網關憑據, -Invalid recipient address,無效的收件人地址, -Invalid {0} condition,{0}條件無效, -Is Attachments Folder,是附件文件夾, -Is Child Table,是子表, -Is Custom Field,是自定義字段, -Is First Startup,是第一次啟動, -Is Folder,在文件夾, -Is Global,是全球性的, -Is Globally Pinned,是全球固定的, -Is Home Folder,是主文件夾, -Is Mandatory Field,是必須填寫, -Is Primary Contact,是主要聯絡人, -Is Private,是私人的, -Is Published Field,發布現場, -Is Published Field must be a valid fieldname,發布現場必須是有效的字段名, -Is Single,單人, -Is Spam,是垃圾郵件, -Is Standard,為標準, -Is Submittable,是可提交的, -Is Table,為表, -It is risky to delete this file: {0}. Please contact your System Manager.,刪除這個文件是有風險的:{0}。請聯絡您的系統管理員。, -Item cannot be added to its own descendents,項目不能被添加到自己的後代, -JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript的格式:frappe.query_reports ['REPORTNAME'] = {}, -Javascript to append to the head section of the page.,Javascript附加到頁面的head區塊。, -John Doe,約翰·多伊, -Kanban Board Column,看板委員會專欄, -Kanban Board Name,看板名稱, -Karma,Karma, -Keep track of all update feeds,跟踪所有更新Feed, -Key,關鍵, -Knowledge Base,知識庫, -Knowledge Base Contributor,知識庫貢獻者, -Knowledge Base Editor,知識庫編輯器, -LDAP Email Field,LDAP電子郵件字段, -LDAP First Name Field,LDAP名現場, -LDAP Not Installed,LDAP未安裝, -"LDAP Search String needs to end with a placeholder, eg sAMAccountName={0}",LDAP搜索字符串需要以佔位符結束,例如sAMAccountName = {0}, -LDAP Server Url,LDAP服務器URL, -LDAP Username Field,LDAP用戶名字段, -LDAP is not enabled.,LDAP未啟用。, -Label Help,標籤說明, -Label and Type,標籤和類型, -Label is mandatory,標籤是強制性的, -Landing Page,著陸頁, -Language,語言, -Language Code,語言代碼, -"Language, Date and Time settings",語言,日期和時間設置, -Last Active,最後活動, -Last IP,最後一個IP, -Last Known Versions,最後已知版本, -Last Login,上次登錄, -Last Message,最後的消息, -Last Modified By,最後修改者, -Last Modified On,上次修改時間, -Last Month,上個月, -Last Point Allocation Date,最後一點分配日期, -Last Quarter,上個季度, -Last Synced On,最後同步, -Last Updated By,最後更新人, -Last Updated On,最後更新日期:, -Last User,最後用戶, -Last Week,上個星期, -Leave a Comment,發表評論, -Leave blank to repeat always,保持空白以保持重複, -Leave this conversation,離開這個談話, -Left this conversation,離開了這個談話, -Length,長短, -Length of {0} should be between 1 and 1000,的{0}長度應介於1和1000之間, -Let's avoid repeated words and characters,讓我們避免重複的字和字符, -Let's prepare the system for first use.,讓我們準備系統首次使用。, -Letter,信件, -Letter Head Based On,基於的信頭, -Letter Head Image,信頭圖像, -Letter Head Name,信頭名, -Letter Head in HTML,信頭中的HTML, -Level Name,級別名稱, -Liked,喜歡, -Liked By,喜歡通過, -Liked by {0},由喜歡{0}, -Likes,喜歡, -Limit Number of DB Backups,限制數據庫備份數量, -Line,線, -Link DocType,連接 DocType, -Link Expired,鏈接已過期, -Link Name,鏈接名稱, -Link Title,鏈接標題, -"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",鏈接是網站的主頁。標準鏈接(索引,登錄,產品,博客,約,接觸), -Link to the page you want to open. Leave blank if you want to make it a group parent.,鏈接到你想打開的頁面。如果你想使之成為集團母公司留空。, -Linked,鏈接, -Linked With,連結到, -Linked with {0},與{0}關聯, -Links,鏈接, -List,名單, -List Filter,列表過濾器, -List View Setting,列表視圖設置, -List a document type,列出的文件類型, -"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]",名單[{“標籤”:_(“作業”),“路線”:“工作”}], -List of backups available for download,可供下載的備份目錄, -List of patches executed,執行補丁列表, -List of themes for Website.,主題的網站名單。, -Load Balancing,負載均衡, -Loading,載入中, -Local DocType,本地DocType, -Local Fieldname,本地字段名稱, -Local Primary Key,本地主鍵, -Locals,當地人, -Log Details,日誌詳情, -Log of Scheduler Errors,日程安排程序錯誤日誌, -Log of error during requests.,錯誤的過程中請求日誌。, -Log of error on automated events (scheduler).,登錄自動化事件(調度)的錯誤。, -Logged in as Guest or Administrator,登錄為來賓或管理員, -Login,登入, -Login After,登錄後, -Login Before,登錄前, -Login Id is required,登錄ID是必需的, -Login Required,需要登錄, -Login Verification Code from {},登錄驗證碼從{}, -Login and view in Browser,在瀏覽器中登錄和查看, -Login not allowed at this time,在這個時候不允許登錄, -"Login session expired, refresh page to retry",登錄會話過期,刷新頁面重試, -Login to comment,登錄發表評論, -Login token required,需要登錄令牌, -Login with LDAP,與LDAP登錄, -Logout,登出, -Long Text,長文本, -Looks like something is wrong with this site's Paypal configuration.,看起來這個網站的Paypal配置有問題。, -Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,看起來像是不對這個網站的支付網關的配置。沒有已經付款。, -"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",似乎發生在交易過程中錯誤的。因為我們還沒有確認付款,支付寶會自動退還你這一數額。如果沒有,請給我們發郵件並註明相關ID:{0}。, -Main Section,主區塊, -"Make ""name"" searchable in Global Search",讓“名”在全球的搜索搜索, -Make use of longer keyboard patterns,利用較長的鍵盤模式, -Manage Third Party Apps,管理第三方應用, -Mandatory Information missing:,強制性信息丟失:, -Mandatory field: set role for,必須填寫:用於設置角色, -Mandatory field: {0},強制字段:{0}, -"Mandatory fields required in table {0}, Row {1}",在表{0}需要強制字段,行{1}, -Mandatory fields required in {0},{0}中必填字段, -Mandatory:,強制性:, -Mapping Name,映射名稱, -Mark as Read,標記為已讀, -Mark as Spam,標記為垃圾郵件, -Mark as Unread,標記為未讀, -Markdown,「Markdown」語法, -Markdown Editor,Markdown編輯, -Marked As Spam,標記為垃圾郵件, -Max 500 records at a time,最大500條記錄在一個時間, -Max Attachment Size (in MB),最大附件大小(以MB為單位), -Max Length,最長長度, -Max Value,最大價值, -Max width for type Currency is 100px in row {0},{0}列內的貨幣類型的最大寬度為100px, -Maximum Attachment Limit for this record reached.,此記錄最大附件限制到達。, -Maximum {0} rows allowed,最多允許{0}列, -"Meaning of Submit, Cancel, Amend",的含義提交,取消,修改, -Mention transaction completion page URL,何況交易完成後頁面的網址, -Menu,選單, -Merge with existing,合併與現有的, -Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,合併是唯一可能的組到組或葉節點到葉節點, -Message Count,消息計數, -Message Parameter,訊息參數, -Message Preview,消息預覽, -Message clipped,郵件被剪輯, -Message not setup,消息未設置, -Message to be displayed on successful completion (only for Guest users),成功完成後顯示的消息(僅限訪客用戶), -Message-id,郵件ID, -Meta Tags,元標籤, -Migration ID Field,遷移ID字段, -Minimum Password Score,最低密碼分數, -Missing Fields,丟失的字段, -Missing parameter Kanban Board Name,缺少參數看板名稱, -Missing parameters for login,缺少參數登錄, -Models (building blocks) of the Application,該應用程序的模型(積木), -Module Def,模組定義, -Module Name,模塊名稱, -Module Not Found,模塊未找到, -Module Path,模塊路徑, -Module to Export,模塊導出, -Modules HTML,HTML模塊, -Monospace,等寬, -More articles on {0},關於{0}的更多文章, -More content for the bottom of the page.,更多的內容的頁面的底部。, -Most Used,最常被使用, -Move To Trash,移到廢紙簍, -Move to Row Number,移至行號, -Multiple root nodes not allowed.,不允許多個根節點。, -Multiplier Field,乘數場, -"Must be of type ""Attach Image""",類型必須為“附加圖片”, -Must have report permission to access this report.,必須具有報告權限訪問此報告。, -Must specify a Query to run,必須指定一個欲執行查詢, -Mute Sounds,關閉聲音, -MyISAM,MyISAM數據, -Name Case,案例名稱, -Name cannot contain special characters like {0},名稱不能包含{0}等特殊字符, -Name not set via prompt,名稱未通過設置提示, -Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,你想這個字段鏈接到該文檔類型(DOCTYPE)下的名稱。如客戶, -Name of the new Print Format,新列印格式的名稱, -Name of {0} cannot be {1},{0}的名稱不能為{1}, -Names and surnames by themselves are easy to guess.,姓名和姓氏本身很容易猜到。, -"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.
",命名選項:
  1. 字段:[fieldname] - 按字段
  2. naming_series: - 通過命名系列(必須存在名為naming_series的字段
  3. 提示 - 提示用戶輸入名稱
  4. [系列] - 前綴系列(以點分隔);例如PRE。#####
  5. 格式:示例 - {MM} morewords {fieldname1} - {fieldname2} - {#####} - 將所有支撐的單詞(字段名,日期字(DD,MM,YY),系列)替換為其值。在大括號外,可以使用任何字符。
, -Naming Series mandatory,命名系列強制性, -Nested set error. Please contact the Administrator.,嵌套組的錯誤。請聯絡管理員。, -New Activity,新活動, -New Comment on {0}: {1},對{0}的新評論:{1}, -New Connection,新的連接, -New Custom Print Format,新自定義列印格式, -New Email,新的電子郵件, -New Email Account,新的電子郵件帳戶, -New Folder,新建文件夾, -New Message from Website Contact Page,從網站的聯繫頁面新消息, -New Name,新名稱, -New Newsletter,新的通訊, -New Password,新密碼, -New Password Required.,需要新密碼, -New Print Format Name,新的打印格式名稱, -New Report name,新的報告名稱, -New Value,新價值, -New data will be inserted.,將插入新數據。, -New value to be set,被設定的新值, -New {0},新的{0}, -New {} releases for the following apps are available,可以使用以下應用程序的新{}版本, -Newsletter Email Group,電子郵件通訊組, -Newsletter Manager,通訊經理, -Newsletter has already been sent,新聞已發送, -"Newsletters to contacts, leads.",通訊,聯絡人,線索。, -Next Action Email Template,下一行動電子郵件模板, -Next Actions HTML,下一步行動HTML, -Next Schedule Date,下一個附表日期, -Next Scheduled Date,下一個預定日期, -Next State,下一狀態, -Next Sync Token,下一個同步令牌, -Next actions,下一步行動, -No Active Sessions,沒有活動會話, -No Copy,沒有複製, -No Email Account,沒有電子郵件帳戶, -No Email Accounts Assigned,沒有電子郵件帳戶分配, -No Emails,沒有電子郵件, -No Label,無標籤, -No Permissions Specified,未指定權限, -No Permissions set for this criteria.,沒有權限設置此標準。, -No Preview,沒有預覽, -No Preview Available,預覽不可用, -No Printer is Available.,沒有打印機可用。, -No Results,沒有結果, -No Tags,沒有標籤, -No alerts for today,沒有警報今天, -No comments yet,還沒有評論, -No comments yet. Start a new discussion.,還沒有評論。開始一個新的討論。, -No data found in the file. Please reattach the new file with data.,在文件中找不到數據。請用數據重新附加新文件。, -No document found for given filters,沒有找到給定過濾器的文檔, -"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",找不到可用作看板列的字段。使用“自定義表單”添加“選擇”類型的自定義字段。, -No file attached,沒有附加的文件, -No further records,沒有進一步的記錄, -No matching records. Search something new,沒有符合條件的記錄。搜索新的東西, -"No need for symbols, digits, or uppercase letters.",無需符號,數字和大寫字母。, -No of Columns,無柱, -No of Rows (Max 500),行數(最多500), -No of emails remaining to be synced,沒有剩餘的電子郵件進行同步, -No permission for {0},對於無許可{0}, -No permission to '{0}' {1},沒有權限“{0}” {1}, -No permission to read {0},沒有權限讀取{0}, -No permission to {0} {1} {2},無權{0} {1} {2}, -No records deleted,沒有記錄被刪除, -No records present in {0},{0}中沒有記錄, -No records tagged.,沒有記錄標記。, -No template found at path: {0},沒有找到模板於路徑:{0}, -No {0} found,沒有找到{0}, -No {0} mail,沒有{0}郵件, -No {0} permission,無{0}的權限, -None: End of Workflow,無:結束的工作流程, -Not Allowed: Disabled User,不允許:禁用用戶, -Not Ancestors Of,不是祖先的, -Not Descendants Of,不是後代, -Not Equals,不等於, -Not In,不在, -Not Linked to any record,未鏈接到任何記錄, -Not Published,未發布, -Not Saved,未儲存, -Not Seen,沒見過, -Not Sent,未發送, -Not Set,沒有設置, -Not a valid Comma Separated Value (CSV File),不是一個有效的逗號分隔值( CSV文件), -Not a valid User Image.,不是有效的用戶映像。, -Not a valid user,不是有效的用戶, -Not a zip file,沒有一個zip文件, -Not allowed for {0}: {1},不允許{0}:{1}, -Not allowed for {0}: {1} in Row {2}. Restricted field: {3},第{2}行中不允許{0}:{1}。受限制的字段:{3}, -Not allowed for {0}: {1}. Restricted field: {2},不允許{0}:{1}。受限制的字段:{2}, -Not allowed to Import,不允許輸入, -Not allowed to change {0} after submission,不允許提交後更改{0}, -Not allowed to print cancelled documents,不允許打印文件取消, -Not allowed to print draft documents,不允許打印文件草案, -Not enough permission to see links,沒有足夠的權限查看鏈接, -Not in Developer Mode,不開發模式, -Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,不是在開發模式!坐落在site_config.json或進行“自定義”的DocType。, -Note Seen By,注意看通過, -Note: By default emails for failed backups are sent.,注意:默認情況下,會發送失敗備份的電子郵件。, -Note: Changing the Page Name will break previous URL to this page.,注意:更改頁面名稱將會破壞此頁面的上一個URL。, -"Note: For best results, images must be of the same size and width must be greater than height.",注意:為獲得最佳效果,圖像必須大小相同,寬度必須大於高度。, -Note: Multiple sessions will be allowed in case of mobile device,注:多個會議將在移動設備的情況下,被允許, -Nothing to show,沒有顯示, -Nothing to update,無需更新, -Notifications and bulk mails will be sent from this outgoing server.,通知和大宗郵件將從此傳出服務器發送。, -Notify Users On Every Login,每次登錄時通知用戶, -Notify if unreplied,如果沒有回复的通知, -Notify if unreplied for (in mins),對於通知,如果沒有回复(以分鐘), -Notify users with a popup when they log in,通知用戶有一個彈出登錄時, -Number Format,數字格式, -Number of Backups,備份數量, -Number of DB Backups,數據庫備份數, -Number of DB backups cannot be less than 1,數據庫備份數不能少於1, -Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),對於一個場的列在網格數(在網格總列應小於11), -Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),列數在列表視圖或網格場(合計列應小於11), -OAuth Authorization Code,OAuth的授權碼, -OAuth Bearer Token,OAuth的承載令牌, -OAuth Client,OAuth客戶端, -OAuth Provider Settings,OAuth的提供商設置, -OTP App,OTP應用程序, -OTP Issuer Name,OTP發行人名稱, -OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret已被重置。下次登錄時需要重新註冊。, -OTP secret can only be reset by the Administrator.,OTP秘密只能由管理員重置。, -Office,辦公室, -Old Password,舊密碼, -Old Password Required.,需要舊密碼, -Older backups will be automatically deleted,舊的備份將被自動刪除, -"On {0}, {1} wrote:",在{0},{1}中寫道:, -"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",提交後,無法更改可提交的文檔。它們只能被取消和修改。, -"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",一旦你設置這個,用戶將只能訪問有聯結的文檔(如博客文章)。, -One Last Step,最後一步, -One Time Password (OTP) Registration Code from {},來自{}的一次性密碼(OTP)註冊碼, -Only 200 inserts allowed in one request,只有200將允許一個請求, -Only Administrator can delete Email Queue,只有管理員可以刪除郵件隊列, -Only Administrator can edit,只有管理員可以編輯, -Only Administrator can save a standard report. Please rename and save.,只有管理員可以保存一個標準的報告。請重新命名並保存。, -Only Administrator is allowed to use Recorder,只允許管理員使用記錄器, -Only Allow Edit For,只允許編輯, -Only Send Records Updated in Last X Hours,只發送記錄在最後X小時更新, -Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,只有必填字段所必需的新記錄。如果你願意,你可以刪除非強制性列。, -Only standard DocTypes are allowed to be customized from Customize Form.,只允許從“自定義表單”自定義標準DocType。, -Only users involved in the document are listed,僅列出文檔中涉及的用戶, -Only {0} emailed reports are allowed per user,只有{0}電子郵件報告是每個用戶可以, -Oops! Something went wrong,糟糕!出事了, -"Oops, you are not allowed to know that",哎呀,你不能知道, -Open Link,打開鏈接, -Open Source Applications for the Web,開源網路應用程式, -Open Translation,打開翻譯, -Open a dialog with mandatory fields to create a new record quickly,打開包含必填字段的對話框以快速創建新記錄, -Open a module or tool,打開一個模塊或工具, -Open your authentication app on your mobile phone.,在您的手機上打開您的認證應用程序。, -Open {0},打開{0}, -Opened,開業, -Operator must be one of {0},運算符必須是{0}, -Option 1,選項1, -Option 2,選項2, -Option 3,選項3, -Optional: Always send to these ids. Each Email Address on a new row,可選:總是發送給這些ID。在新行的每個電子郵件地址, -Optional: The alert will be sent if this expression is true,可選:警報會在這個表達式為true發送, -Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',選擇“動態鏈接”類型的字段都必須指向另一個鏈接字段的選項為'的DocType“, -Options Help,選項幫助, -Options for select. Each option on a new line.,對於選擇選項。在新的一行每個選項。, -Options not set for link field {0},對於鏈接欄位沒有設置選項{0}, -Or login with,或登錄, -Order,訂購, -Org History,組織歷史, -Org History Heading,組織歷史航向, -Orientation,取向, -Original Value,原始價值, -Outgoing email account not correct,傳出的電子郵件帳戶不正確, -Output,產量, -PDF Page Size,PDF頁面大小, -PDF Settings,PDF設置, -PDF generation failed,PDF生成失敗, -PDF generation failed because of broken image links,PDF生成,因為破碎的圖像鏈接失敗, -"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",尚不支持通過“原始打印”進行PDF打印。請在“打印機設置”中刪除打印機映射,然後重試。, -Page HTML,頁面的HTML, -Page Length,頁面長度, -Page Name,網頁名稱, -Page Settings,頁面設置, -Page has expired!,頁已過期!, -Page not found,找不到網頁, -Page to show on the website\n,頁面顯示網站, -Pages in Desk (place holders),在台頁面(佔位符), -Parent,親, -Parent Error Snapshot,家長錯誤快照, -Parent Label,父標籤, -Parent Table,父表, -Parent is required to get child table data,父需要獲取子表數據, -Parent is the name of the document to which the data will get added to.,Parent是將數據添加到的文檔的名稱。, -Participants,參與者, -Passive,被動, -Password Reset,密碼重置, -Password Updated,密碼更新, -Password for Base DN,密碼基礎DN, -Password is required or select Awaiting Password,需要密碼,或者選擇等待密碼, -Password not found,密碼未找到, -Password reset instructions have been sent to your email,密碼重置說明已發送到您的電子郵件, -Paste,貼上, -Patch,補丁, -Patch Log,補丁日誌, -Path to CA Certs File,CA Certs文件的路徑, -Path to Server Certificate,服務器證書的路徑, -Path to private Key File,私鑰文件的路徑, -PayPal Settings,貝寶設置, -PayPal payment gateway settings,貝寶支付網關設置, -Payment Failed,支付失敗, -Payment Success,付款成功, -Pending Verification,待驗證, -Percent,百分比, -Percent Complete,百分比完成, -Perm Level,權限等級, -Permanent,常駐, -Permanently Cancel {0}?,永久取消{0}?, -Permanently Submit {0}?,永久提交{0}?, -Permanently delete {0}?,永久刪除{0} ?, -Permission Error,權限錯誤, -Permission Level,權限級別, -Permission Levels,權限級別, -Permission Rules,權限規則, -Permissions,權限, -Permissions are automatically applied to Standard Reports and searches.,權限會自動應用於標準報告和搜索。, -"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.",權限為對角色和文件類型(DocTypes)的設定值,諸如讀取、寫入、建立、刪除、提交、取消、修改、報表、匯入、匯出、列印、寄信與用戶權限設定等的權限設定。, -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.,在更高級別的權限是現場級的權限。所有領域都對他們權限級別設置,並在該權限適用於該領域中定義的規則。要隱藏或使某些領域的只讀某些角色,這是在的情況下非常有用。, -"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.",0級權限是文檔級的權限,也就是說,它們是主要用於訪問文件。, -Permissions get applied on Users based on what Roles they are assigned.,套用於用戶的權限設定是根據該用戶被指定的角色而定。, -Personal,個人, -Personal Data Deletion Request,個人數據刪除請求, -Personal Data Download Request,個人資料下載請求, -Phone No.,電話號碼, -Pick Columns,選擇列, -Plant,廠, -Please Duplicate this Website Theme to customize.,請複製此網站主題以供客製化。, -Please Enter Your Password to Continue,請輸入您的密碼以繼續, -Please Install the ldap3 library via pip to use ldap functionality.,請通過pip安裝ldap3庫以使用ldap功能。, -Please Update SMS Settings,請更新簡訊設定, -Please add a subject to your email,請在您的電子郵件中添加主題, -Please ask your administrator to verify your sign-up,請向管理員詢問,以確認您的註冊, -Please attach a file first.,請先加上附檔。, -Please attach an image file to set HTML,請附上圖像文件以設置HTML, -Please check your email for verification,請檢查您的電子郵件驗證, -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.,請查看您註冊的電子郵件地址以獲取有關如何繼續的說明。不要關閉這個窗口,因為你必須返回它。, -Please close this window,請關閉此窗口, -Please confirm your action to {0} this document.,請確認您對{0}此文檔的操作。, -Please do not change the rows above {0},請不要更改上面的{0}列, -Please do not change the template headings.,請不要更改模板標題。, -Please duplicate this to make changes,請複製此做出改變, -Please enable developer mode to create new connection,請啟用開發人員模式以創建新的連接, -Please ensure that your profile has an email address,請確保您的個人資料有一個電子郵件地址,, -Please enter Access Token URL,請輸入訪問令牌URL, -Please enter Authorize URL,請輸入授權網址, -Please enter Base URL,請輸入基本網址, -Please enter Client ID before social login is enabled,在啟用社交登錄之前,請輸入客戶端ID, -Please enter Client Secret before social login is enabled,在啟用社交登錄之前,請輸入客戶端密碼, -Please enter Redirect URL,請輸入重定向網址, -Please enter the password,請輸入密碼, -Please enter valid mobile nos,請輸入有效的手機號, -Please enter values for App Access Key and App Secret Key,為App訪問鍵和App保密密鑰請輸入值, -Please make sure that there are no empty columns in the file.,請確保沒有空欄在文件中。, -Please make sure the Reference Communication Docs are not circularly linked.,請確保參考通信文檔不是循環鏈接的。, -Please refresh to get the latest document.,請更新以取得最新的文檔。, -Please save before attaching.,請安裝前儲存。, -Please save the Newsletter before sending,請在發送之前保存信件, -Please save the document before assignment,請保存轉讓前的文件, -Please save the document before removing assignment,請刪除分配之前保存的文檔, -Please save the report first,請先保存報表, -Please select DocType first,請首先選擇的DocType, -Please select Entity Type first,請先選擇實體類型, -Please select Minimum Password Score,請選擇最低密碼分數, -Please select a Amount Field.,請選擇一個金額字段。, -Please select a file or url,請選擇一個文件或URL, -Please select a new name to rename,請選擇一個新名稱進行重命名, -Please select a valid csv file with data,請選擇有合格資料的csv檔案, -Please select another payment method. PayPal does not support transactions in currency '{0}',請選擇其他付款方式。貝寶不支持貨幣交易“{0}”, -Please select another payment method. Razorpay does not support transactions in currency '{0}',請選擇其他付款方式。 Razorpay不支持貨幣交易“{0}”, -Please select atleast 1 column from {0} to sort/group,請選擇從{0}進行排序/組ATLEAST 1柱, -Please select document type first.,請先選擇文件類型。, -Please select the Document Type.,請選擇文件類型。, -Please set Base URL in Social Login Key for Frappe,請在Frappe的社交登錄密鑰中設置基本網址, -Please set Dropbox access keys in your site config,請在您的網站配置設定Dropbox的存取碼, -Please set a printer mapping for this print format in the Printer Settings,請在“打印機設置”中為此打印格式設置打印機映射, -Please set filters,請設定篩選條件, -Please set filters value in Report Filter table.,請設置在報告過濾表過濾器值。, -"Please setup SMS before setting it as an authentication method, via SMS Settings",請通過SMS設置將其設置為身份驗證方式之前設置短信, -Please setup a message first,請先設置一條消息, -Please specify which date field must be checked,請指定必須檢查哪些日期欄位, -Please specify which value field must be checked,請指定必須檢查哪些值欄位, -Please try again,請再試一次, -Please verify your Email Address,請驗證您的郵箱地址, -Point Allocation Periodicity,點分配週期, -Points,點, -Port,港口, -Portal Menu,門戶網站菜單, -Portal Menu Item,門戶菜單項, -Post,文章, -Post Comment,發表評論, -Postal,郵政, -Postal Code,郵政編碼, -Postprocess Method,後處理方法, -Posts filed under {0},在{0}下提交的帖子, -Precision,精確, -Precision should be between 1 and 6,精度應為1和6之間, -Predictable substitutions like '@' instead of 'a' don't help very much.,可預見的替換像'@'而不是'一'不要太大幫助。, -Preferred Billing Address,偏好的帳單地址, -Preferred Shipping Address,偏好的送貨地址, -Prepared Report,準備報告, -Preparing Report,準備報告, -Preprocess Method,預處理方法, -Press Enter to save,按Enter鍵保存, -Preview HTML,預覽HTML, -Preview Message,預覽消息, -Previous,上一筆, -Previous Hash,以前的哈希, -Print Format Builder,列印格式生成器, -Print Format Help,列印格式求助, -Print Format Type,列印格式類型, -Print Format {0} is disabled,列印格式{0}被禁用, -Print Hide,列印隱藏, -Print Hide If No Value,打印隱藏如果沒有值, -Print Sent to the printer!,打印發送到打印機!, -Print Server,打印服務器, -Print Style,列印樣式, -Print Style Name,打印樣式名稱, -Print Style Preview,列印樣式預覽, -Print Width,列印寬度, -"Print Width of the field, if the field is a column in a table",列印欄位的寬度,如果該字段是一個表中的列, -Print with letterhead,打印信頭, -Printer,打印機, -Printer Mapping,打印機映射, -Printer Name,打印機名稱, -Printer Settings,打印機設置, -Printing failed,打印失敗, -Private Key,私鑰, -Private and public Notes.,私人和公共的注意事項。, -ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}發送文檔引用, -Processing,處理, -Processing...,處理..., -Progress,進展, -Property Setter,屬性設定器, -Property Setter overrides a standard DocType or Field property,物業二傳手覆蓋標準的DocType或實地房產, -Property Type,屬性類型, -Provider Name,提供者名稱, -Public Key,公鑰, -Publishable Key,可發布密鑰, -Published On,發表於, -Pull,拉, -Pull Failed,拉失敗, -Pull Insert,拉插入, -Pull Update,拉更新, -Push,推, -Push Delete,推刪除, -Push Failed,推送失敗, -Push Insert,推插入, -Python Module,Python模塊, -QR Code,二維碼, -QR Code for Login Verification,用於登錄驗證的QR碼, -QZ Tray Connection Active!,QZ托盤連接有效!, -QZ Tray Failed: ,QZ托盤失敗:, -Quarter Day,季度日, -Query,查詢, -Query Report,查詢報表, -Query must be a SELECT,查詢必須是一個SELECT, -Queue should be one of {0},隊列應該是{0}, -Queued for backup. It may take a few minutes to an hour.,排隊等待備份。這可能需要幾分鐘到一個小時。, -Queued for backup. You will receive an email with the download link,排隊備份。您將收到一封包含下載鏈接的電子郵件, -Quick Help for Setting Permissions,設定權限快速求助, -Rating: ,評分:, -Raw Email,原始電子郵件, -Razorpay Payment gateway settings,Razorpay支付網關設置, -Razorpay Settings,Razorpay設置, -Re: ,回覆:, -Read,閱讀, -Read Only,只讀, -Read by Recipient,由收件人閱讀, -Read by Recipient On,由收件人閱讀, -Receiver Parameter,收受方參數, -Recent years are easy to guess.,近年來,很容易被猜到。, -Recipient,接受者, -Recipient Unsubscribed,收件人取消訂閱, -Record does not exist,記錄不存在, -Records for following doctypes will be filtered,以下文檔類型的記錄將被過濾, -Redirect URI Bound To Auth Code,重定向URI勢必授權碼, -Redirect URIs,重定向URI, -Redis cache server not running. Please contact Administrator / Tech support,Redis的暫存服務器無法運行。請聯絡管理員/技術支持, -Ref DocType,參考的DocType, -Ref Report DocType,參考報告DocType, -Reference DocName,參考DocName, -Reference DocType and Reference Name are required,參考的DocType和參考名稱是必需的, -Reference Report,參考報告, -Reference: {0} {1},參考:{0} {1}, -Refreshing...,更新中..., -Register OAuth Client App,註冊OAuth客戶端應用程序, -Registered but disabled,註冊但被禁用, -Relapsed,復發, -Relapses,復發, -Relink,重新鏈接, -Relink Communication,重新鏈接通訊, -Relinked,重新鏈接, -Reload,重新載入, -Remember Last Selected Value,記得去年選定的值, -Remote,遠程, -Remote Fieldname,遠程字段名稱, -Remote ID,遠程ID, -Remote Objectname,遠程對象名稱, -Remote Primary Key,遠程主鍵, -Remove,去掉, -Remove Field,刪除字段, -Remove Filter,刪除過濾器, -Remove Section,刪除部分, -Remove Tag,刪除標籤, -Remove all customizations?,刪除所有自定義?, -Removed {0},刪除{0}, -Rename many items by uploading a .csv file.,通過上傳csv文件重命名多個項目。, -Repeat Header and Footer in PDF,重複頁眉和頁腳的PDF, -Repeat On,重複在, -Repeat Till,重複直到, -Repeat on Day,一天重複, -Repeat this Event,重複此事件, -"Repeats like ""aaa"" are easy to guess",像“AAA”重複很容易被猜到, -"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",重複像“ABCABCABC”只稍硬比“ABC”猜測, -Reply,答复, -Report End Time,報告結束時間, -Report Filters,報告過濾器, -Report Hide,報告隱藏, -Report Manager,報告管理, -Report Name,報告名稱, -Report Start Time,報告開始時間, -Report cannot be set for Single types,報告不能單類型設置, -Report of all document shares,所有的文件共享報告, -Report updated successfully,報告已成功更新, -Report was not saved (there were errors),報告沒有被保存(有錯誤), -Report {0},報告{0}, -Report {0} is disabled,報告{0}無效, -Report:,報告:, -Represents a User in the system.,表示系統中一個用戶。, -Represents the states allowed in one document and role assigned to change the state.,代表一個文檔和角色分配給改變國家允許的狀態。, -Request Timed Out,請求超時, -Request URL,請求URL, -Require Trusted Certificate,需要可信證書, -Reset OTP Secret,重置OTP密碼, -Reset Password,重設密碼, -Reset Password Key,重設密碼鍵值, -Reset Permissions for {0}?,對{0}重置權限?, -Reset to defaults,重置為預設值, -Reset your password,重置你的密碼, -Response Type,響應類型, -Restore,恢復, -Restore Original Permissions,恢復原始權限, -Restore or permanently delete a document.,恢復或永久刪除文檔。, -Restore to default settings?,恢復到默認設置?, -Restored,恢復, -Restrict To Domain,限製到域, -Restrict user for specific document,限制特定文檔的用戶, -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),僅限此IP地址用戶。多個IP地址可以通過用逗號分隔的方式輸入。也接受部分的IP地址區段如(111.111.111), -Resume Sending,發送簡歷, -Retake,奪回, -Retry,重試, -Return to the Verification screen and enter the code displayed by your authentication app,返回驗證屏幕,並輸入您的身份驗證應用程序顯示的代碼, -Reverse Icon Color,反向圖標顏色, -Revert,還原, -Revert Of,還原, -Review Level,審查級別, -Review Levels,評論級別, -Review Points,評論點, -Reviews,評測, -Revoked,撤銷, -Rich Text,多格式文本(Rich Text), -Robots.txt,的robots.txt, -Role Name,角色名稱, -Role Permission for Page and Report,角色權限頁和報告, -Role Permissions,角色權限, -Role Profile,角色簡介, -Role and Level,角色和級別, -Roles Assigned,角色指定, -Roles can be set for users from their User page.,角色可以從他們的用戶頁面的用戶進行設置。, -Root {0} cannot be deleted,root{0}無法刪除, -Route History,路線歷史, -Route Redirects,路線重定向, -Route to Success Link,通往成功鏈接的路線, -Row,列, -Row #{0}:,列#{0}:, -Row No,行號, -Row Status,行狀態, -Row Values Changed,行值已更改, -Row {0}: Not allowed to disable Mandatory for standard fields,行{0}:不允許禁用標準域的強制性, -Row {0}: Not allowed to enable Allow on Submit for standard fields,行{0}:不允許啟用允許對提交的標準字段, -Rows Added,行增加了, -Rows Removed,刪除行, -Rule,規則, -Rule Name,規則名稱, -Rules defining transition of state in the workflow.,規則乃定義作業流程內狀態的轉變, -"Rules for how states are transitions, like next state and which role is allowed to change state etc.",規則的狀態是如何過渡,例如下一個狀態以及何種角色允許改變狀態等。, -Run scheduled jobs only if checked,僅執行勾選的排定工作, -S3 Backup Settings,S3備份設置, -S3 Backup complete!,S3備份完成!, -SMS Gateway URL,短信閘道的URL, -SMS Parameter,短信參數, -SMS Settings,簡訊設定, -SMS sent to following numbers: {0},短信發送至以下號碼:{0}, -SMTP Server,SMTP服務器, -SMTP Settings for outgoing emails,SMTP設置外發郵件, -"SQL Conditions. Example: status=""Open""",SQL條件。例如:狀態=“打開”, -Salesforce,銷售隊伍, -Same Field is entered more than once,相同字段不止一次輸入, -Save API Secret: ,保存API密碼:, -Save As,另存為, -Save Filter,保存過濾器, -Save Report,保存報告, -Save filters,保存過濾器, -Saving,儲存中, -Scan the QR Code and enter the resulting code displayed.,掃描QR碼並輸入顯示的結果代碼。, -Scopes,領域, -Script,腳本, -Script Report,腳本報告, -Script or Query reports,腳本或查詢報告, -Script to attach to all web pages.,腳本安裝到所有網頁。, -Search Fields,搜索欄位, -Search Help,搜索幫助, -Search field {0} is not valid,搜索欄{0}無效, -Search for anything,搜索任何內容, -Search in a document type,對文檔類型搜索, -Search or Create a New Chat,搜索或創建一個新的聊天, -Search or type a command,搜索或輸入命令, -Searching ...,正在搜尋..., -Section Break,分節符, -Section Heading,標題節, -Security Settings,安全設置, -See all past reports.,查看所有過去的報告。, -See on Website,查看網站, -See the document at {0},請參閱{0}處的文檔, -Seems API Key or API Secret is wrong !!!,似乎API密鑰或API的秘密是錯誤的!, -Seems Publishable Key or Secret Key is wrong !!!,似乎可發布的密鑰或秘密密鑰錯誤!, -"Seems issue with server's razorpay config. Don't worry, in case of failure amount will get refunded to your account.",似乎與服務器的配置razorpay問題。別擔心,在失敗量情況將得到退還到您的帳戶。, -Seems token you are using is invalid!,似乎你使用的令牌是無效的!, -Seen,可見, -Seen By,看到通過, -Seen By Table,通過看表, -Select Attachments,選擇附件, -Select Child Table,選擇子表, -Select Column,選擇列, -Select Columns,選擇列, -Select Document Type,選擇文件類型, -Select Document Type or Role to start.,選擇文件類型或角色開始。, -Select Document Types to set which User Permissions are used to limit access.,選擇文件類型來設置該用戶的權限來限制訪問。, -Select File Format,選擇文件格式, -Select File Type,選擇文件類型, -Select Language...,選擇語言..., -Select Languages,選擇語言, -Select Module,選擇模塊, -Select Print Format,選擇列印格式, -Select Print Format to Edit,選擇編輯的列印格式, -Select Role,選擇角色, -Select Table Columns for {0},選擇表列{0}, -Select Your Region,選擇您的地區, -Select a Brand Image first.,首先選擇一個品牌形象。, -Select a DocType to make a new format,選擇一個DOCTYPE做出新的格式, -Select a chat to start messaging.,選擇一個聊天開始消息。, -Select a group node first.,首先選擇一組節點。, -Select an existing format to edit or start a new format.,選擇現有格式來編輯或開始一個新的格式。, -Select an image of approx width 150px with a transparent background for best results.,選擇約寬150像素的透明背景圖像以獲得最佳效果。, -Select atleast 1 record for printing,選擇打印ATLEAST 1紀錄, -Select or drag across time slots to create a new event.,選擇或拖動整個時間條,以創建一個新的事件。, -Select records for assignment,用於分配選擇記錄, -Select the label after which you want to insert new field.,之後要插入新字段中選擇的標籤。, -"Select your Country, Time Zone and Currency",選擇國家時區和貨幣, -Select {0},選擇{0}, -Self approval is not allowed,不允許自我批准, -Send After,發送後, -Send Alert On,發送警示在, -Send Email Alert,發送郵件提醒, -Send Email Print Attachments as PDF (Recommended),發送郵件列印附件為PDF格式(推薦), -Send Email for Successful Backup,發送電子郵件以便成功備份, -Send Me A Copy of Outgoing Emails,給我發送電子郵件的副本, -Send Notification to,發送通知給, -Send Notifications To,發送通知給, -Send Print as PDF,發送列印為PDF, -Send Read Receipt,發送閱讀回執, -Send Unsubscribe Link,發送退訂鏈接, -Send Welcome Email,發送歡迎電子郵件, -Send alert if date matches this field's value,發送警示,如果日期匹配該欄位的值, -Send alert if this field's value changes,發送警示,如果這個欄位的值改變, -Send an email reminder in the morning,在早上發送電子郵件提醒, -Send days before or after the reference date,之前或基準日後發送天, -Send enquiries to this email address,發送諮詢到這個郵箱地址, -Send me a copy,給我發一份, -Send only if there is any data,僅發送,如果有任何數據, -Send unsubscribe message in email,發送電子郵件退訂消息, -Sender,寄件人, -Sender Email,發件人電子郵件, -Sent Read Receipt,發送閱讀回執, -Sent or Received,發送或接收, -Sent/Received Email,已發送/已接收電子郵件, -Server IP,服務器IP, -Session Expired,會話已過期, -Session Expiry,連線過期, -Session Expiry Mobile,會話過期移動, -Session Expiry in Hours e.g. 06:00,連線過期的小時,例如06:00, -Session Expiry must be in format {0},會話到期格式必須是{0}, -Session Start Failed,會話開始失敗, -Set Banner from Image,從圖像設置橫幅, -Set Chart,設置圖表, -Set Filters,設置過濾器, -Set New Password,設定新密碼, -Set Number of Backups,設置備份數量, -Set Only Once,設置一次, -Set Password,設置密碼, -Set Permissions,設置權限, -Set Permissions on Document Types and Roles,在文件類型和角色設置權限, -Set Property After Alert,警報後設置屬性, -Set Quantity,設置數量, -Set Role For,集角色, -Set User Permissions,設定用戶權限, -Set Value,設定值, -Set custom roles for page and report,對於頁面和報表設置自定義角色, -"Set default format, page size, print style etc.",設置預設格式,頁面大小,列印樣式等。, -Set non-standard precision for a Float or Currency field,設置非標精度浮點數或貨幣領域, -Set numbering series for transactions.,設置編號系列交易。, -Set up rules for user assignments.,為用戶分配設置規則。, -Setting this Address Template as default as there is no other default,設置此地址模板為預設當沒有其它的預設值, -Setting up your system,設置您的系統, -Settings for About Us Page.,設定關於我們頁面。, -Settings for Contact Us Page,設定「聯絡我們」的頁面, -Settings for Contact Us Page.,設定「聯絡我們」的頁面。, -Settings for OAuth Provider,對OAuth的提供商設置, -Settings for the About Us Page,設置關於我們頁面, -Setup Auto Email,設置自動電子郵件, -Setup Complete,安裝完成, -Setup Notifications based on various criteria.,基於各種標準的設置通知。, -Setup Reports to be emailed at regular intervals,設置報告到定期通過電子郵件發送, -"Setup of top navigation bar, footer and logo.",安裝程序的頂部導航欄,頁腳和徽標。, -Share URL,分享網址, -Share With,與某人分享, -Share this document with,分享這個文件, -Share {0} with,與{0}分享, -Shared With,隨著共享, -Shared with everyone,的所有人共享, -Shared with {0},與{0}共享, -Shop,店, -Short keyboard patterns are easy to guess,短鍵盤模式容易被猜中, -Show Attachments,顯示附件, -Show Calendar,顯示日曆, -Show Dashboard,顯示儀表板, -Show Full Error and Allow Reporting of Issues to the Developer,顯示完整錯誤並允許向開發人員報告問題, -Show Line Breaks after Sections,章節後,顯示換行符, -Show Permissions,顯示權限, -Show Preview Popup,顯示預覽彈出窗口, -Show Relapses,顯示復發, -Show Report,顯示報告, -Show Section Headings,顯示部分標題, -Show Sidebar,顯示側邊欄, -Show Title,顯示標題, -Show Totals,顯示總計, -Show Weekends,顯示週末, -Show all Versions,顯示所有版本, -Show as Grid,顯示為網格, -Show as cc,顯示為CC, -Show failed jobs,顯示失敗的作業, -Show in Module Section,在顯示模塊部分, -Show in filter,在過濾器中顯示, -Show more details,查看更多詳情, -Show only errors,只顯示錯誤, -"Show title in browser window as ""Prefix - title""",標題顯示在瀏覽器窗口中的“前綴 - 標題”, -Showing only Numeric fields from Report,僅顯示報告中的數字字段, -Sidebar Items,邊欄項目, -Sidebar Settings,側邊欄的設置, -Sidebar and Comments,邊欄和評論, -Sign Up,註冊, -Sign Up is disabled,註冊被禁用, -Signature,簽名, -"Simple Python Expression, Example: Status in (""Closed"", ""Cancelled"")",簡單的Python表達式,示例:狀態(“已關閉”,“已取消”), -"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",簡單的Python表達式,例如:status =='Open'並輸入=='Bug', -Simultaneous Sessions,並發會話, -Single DocTypes cannot be customized.,單個DocType無法自定義。, -Single Post (article).,單個帖子(文章)。, -Single Types have only one record no tables associated. Values are stored in tabSingles,單一類型只有一個記錄關聯的表。值被存儲在tabSingles, -Skip Authorization,跳過授權, -Skip rows with errors,跳過有錯誤的行, -Skype,Skype的, -Slack,鬆弛, -Slack Channel,鬆弛頻道, -Slack Webhook Error,Slack Webhook錯誤, -Slack Webhook URL,Slack Webhook網址, -Slack Webhooks for internal integration,Slack Webhooks用於內部集成, -Slideshow Items,幻燈片項目, -Slideshow Name,幻燈片放映名稱, -Slideshow like display for the website,幻燈片一樣顯示的網站, -Small Text,小文, -Smallest Currency Fraction Value,最小的貨幣分數值, -Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,最小的循環部分單元(硬幣)。對於如1%用於美元,因此應輸入為0.01, -Snapshot View,快照視圖, -Social,社會, -Social Login Key,社交登錄密鑰, -Social Login Provider,社交登錄提供商, -Social Logins,社交登錄, -Socketio is not connected. Cannot upload,Socketio未連接。無法上傳, -Soft-Bounced,軟退回, -Some of the features might not work in your browser. Please update your browser to the latest version.,您的瀏覽器中的某些功能可能無法正常工作。請將您的瀏覽器更新到最新版本。, -Something went wrong,出了些問題, -Something went wrong while generating dropbox access token. Please check error log for more details.,在生成dropbox訪問令牌時發生錯誤。請檢查錯誤日誌以獲取更多詳細信息。, -Sorry! I could not find what you were looking for.,對不起!我無法找到你所期待的。, -Sorry! Sharing with Website User is prohibited.,對不起!與網站用戶共享是禁止的。, -Sorry! User should have complete access to their own record.,對不起!用戶應該擁有完全訪問他們自己的紀錄。, -Sorry! You are not permitted to view this page.,對不起!你不允許查看此頁面。, -"Sorry, you're not authorized.",對不起,你沒有授權。, -Sort Field,排序欄位, -Sort field {0} must be a valid fieldname,排序字段{0}必須是有效的字段名, -Spam,垃圾郵件, -Special Characters are not allowed,特殊字符是不允許, -"Standard DocType cannot have default print format, use Customize Form",標準DocType不能具有默認打印格式,請使用自定義表單, -Standard Print Format cannot be updated,標準列印格式不能被更新, -Standard Print Style cannot be changed. Please duplicate to edit.,標準打印樣式無法更改。請重複編輯。, -Standard Reports,標準報告, -Standard Sidebar Menu,標準工具欄菜單, -Standard roles cannot be disabled,標準的角色不能被禁用, -Standard roles cannot be renamed,標準的角色不能被重命名, -Start Date Field,開始日期字段, -Start a conversation.,開始對話。, -Start entering data below this line,開始輸入數據低於此線, -Start new Format,開始新的格式, -StartTLS,啟動TLS, -Started,入門, -Starting Frappe ...,開始Frappé..., -Starts on,開始於, -States,州, -"States for workflow (e.g. Draft, Approved, Cancelled).",工作流程狀態(例如草稿,已批准,已取消)。, -Static Parameters,靜態參數, -Stats based on last month's performance (from {0} to {1}),基於上個月表現的統計數據(從{0}到{1}), -Stats based on last week's performance (from {0} to {1}),基於上週表現的統計數據(從{0}到{1}), -Status: {0},狀態:{0}, -Steps to verify your login,驗證您的登錄的步驟, -Stores the JSON of last known versions of various installed apps. It is used to show release notes.,儲存最後安裝版本之應用程式的JSON。用來顯示發行說明。, -Straight rows of keys are easy to guess,鍵的直排容易被猜中, -Stripe Settings,條紋設置, -Stripe payment gateway settings,條紋支付網關設置, -Style,風格, -Style Settings,樣式設置, -"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",風格代表按鈕的顏色:成功 - 綠色,危險 - 紅,逆 - 黑色,主要 - 深藍色,資訊 - 淺藍,警告 - 橙, -Stylesheets for Print Formats,打印格式樣式表, -"Sub-currency. For e.g. ""Cent""",子貨幣。如「美分」, -Sub-domain provided by erpnext.com,由erpnext.com提供的子網域, -Subdomain,子域, -Subject Field,主題字段, -Submit after importing,導入後提交, -Submit an Issue,提交問題, -Submit this document to confirm,提交該文件以確認, -Submitting {0},提交{0}, -Submitted Document cannot be converted back to draft. Transition row {0},提交的文件不能被轉換回起草。, -Subscription Notification,訂閱通知, -Subsidiary,副, -Success Action,成功行動, -Success Message,成功的訊息, -Success URL,成功網址, -Successful: {0} to {1},成功:{0}到{1}, -Successfully Updated,成功更新, -Successfully updated translations,成功更新翻譯, -Suggested Username: {0},建議用戶名:{0}, -Sum of {0},{0}的總和, -Support Email Address Not Specified,支持未指定的電子郵件地址, -Suspend Sending,暫停發送, -Switch To Desk,切換到台, -Symbol,符號, -Sync on Migrate,同步上遷移, -Syntax error in template,模板語法錯誤, -System,系統, -System Page,系統頁面, -System Settings,系統設置, -System User,系統用戶, -System and Website Users,系統和網站用戶, -Table Field,表場, -Table HTML,表格HTML, -Table {0} cannot be empty,表{0}不能為空, -Take Backup Now,就拿立即備份, -Team Members,團隊成員, -Team Members Heading,小組成員標題, -Temporarily Disabled,暫時禁用, -Test Email Address,測試電子郵件地址, -Test Runner,測試運行, -Test_Folder,Test_Folder, -Text Align,文本對齊, -Text Color,文字顏色, -Text Content,文本內容, -Text Editor,文字編輯器, -Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,要顯示的文本鏈接網頁,如果這種形式有一個網頁。線路路由會自動生成基於`page_name`和`parent_website_route`, -Thank you for your email,感謝您的電子郵件, -Thank you for your interest in subscribing to our updates,感謝您的關注中訂閱我們的更新, -Thank you for your message,謝謝您的留言, -The CSV format is case sensitive,CSV格式區分大小寫, -The Condition '{0}' is invalid,條件“{0}”無效, -The First User: You,第一個用戶:您, -"The application has been updated to a new version, please refresh this page",該應用程序已被更新到新版本,請刷新本頁面, -The attachments could not be correctly linked to the new document,附件無法正確鏈接到新文檔, -The document could not be correctly assigned,無法正確分配文檔, -The document has been assigned to {0},該文檔已分配給{0}, -The first user will become the System Manager (you can change this later).,第一個用戶將成為系統管理器(你可以改變這個版本)。, -The name that will appear in Google Calendar,將顯示在Google日曆中的名稱, -The process for deletion of {0} data associated with {1} has been initiated.,刪除與{1}關聯的{0}數據的過程已啟動。, -The resource you are looking for is not available,您正在查找的資源不可用, -The system provides many pre-defined roles. You can add new roles to set finer permissions.,該系統提供了許多預先定義的角色。您可以添加新的角色設定更精細的權限。, -The user from this field will be rewarded points,來自此字段的用戶將獲得獎勵積分, -Theme,主題, -Theme URL,主題網址, -There can be only one Fold in a form,只能有一個折疊的形式, -There is an error in your Address Template {0},有一個在你的地址模板錯誤{0}, -There is no data to be exported,沒有要導出的數據, -There is some problem with the file url: {0},有一些問題與文件的URL:{0}, -There must be atleast one permission rule.,有至少要包含一個允許規則。, -"There seems to be an issue with the server's braintree configuration. Don't worry, in case of failure, the amount will get refunded to your account.",服務器的braintree配置似乎有問題。別擔心,如果失敗,這筆款項將退還給您的帳戶。, -There should remain at least one System Manager,應該保持至少一個系統管理器, -There was an error saving filters,儲存篩選條件時發生錯誤, -There were errors,有錯誤, -There were errors while creating the document. Please try again.,創建文檔時出錯。請再試一次。, -There were errors while sending email. Please try again.,還有在發送電子郵件是錯誤的。請再試一次。, -"There were some errors setting the name, please contact the administrator",有一些錯誤設定的名稱,請與管理員聯絡, -These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,這些值將在交易中自動更新,也將是有益的權限限制在含有這些值交易這個用戶。, -Third Party Apps,第三方應用, -Third Party Authentication,第三方認證, -This Currency is disabled. Enable to use in transactions,公司在以下倉庫失踪, -This Kanban Board will be private,這看板私會, -This document cannot be reverted,此文檔無法還原, -This document has been modified after the email was sent.,發送電子郵件後,此文檔已被修改。, -This document has been reverted,該文件已被還原, -This document is currently queued for execution. Please try again,這份文件目前正在排隊等待執行。請再試一次, -This email is autogenerated,此電子郵件是自動生成的, -This email was sent to {0},這封電子郵件被發送到{0}, -This email was sent to {0} and copied to {1},此電子郵件發送到{0},並複製到{1}, -This feature is brand new and still experimental,此功能是全新的,仍處於試驗階段, -This field will appear only if the fieldname defined here has value OR the rules are true (examples): \nmyfield\neval:doc.myfield=='My Value'\neval:doc.age>18,該字段將顯示僅在此處定義的字段名具有值或規則是真實的(例子):MyField的EVAL:doc.myfield =='我的價值'的eval:doc.age> 18, -This form does not have any input,這種形式沒有任何輸入, -This form has been modified after you have loaded it,這種形式已被修改,你已經裝好了之後,, -This format is used if country specific format is not found,此格式用於如果找不到特定國家的格式, -This goes above the slideshow.,這正好幻燈片上面。, -This is a background report. Please set the appropriate filters and then generate a new one.,這是一份背景報告。請設置適當的過濾器,然後生成一個新過濾器。, -This is a top-10 common password.,這是一個前10名的通用密碼。, -This is a top-100 common password.,這是一個頂100公共密碼。, -This is a very common password.,這是一個非常普遍的密碼。, -This is an automatically generated reply,這是一個自動生成的回复, -This is similar to a commonly used password.,這類似於一個通常使用的密碼。, -This is the template file generated with only the rows having some error. You should use this file for correction and import.,這是只有有一些錯誤的行生成的模板文件。您應該使用此文件進行更正和導入。, -This link has already been activated for verification.,此鏈接已激活以進行驗證。, -This link is invalid or expired. Please make sure you have pasted correctly.,此鏈接是無效或過期。請確保你已經正確粘貼。, -This may get printed on multiple pages,這可能會打印在多個頁面上, -This month,這個月, -This query style is discontinued,此查詢樣式已停止, -This report was generated on {0},此報告是在{0}上生成的, -This report was generated {0}.,此報表已建立 {0}., -This request has not yet been approved by the user.,此請求尚未得到用戶的批准。, -This role update User Permissions for a user,這個角色更新用戶權限的用戶, -This will log out {0} from all other devices,這將從所有其他設備註銷{0}, -This will permanently remove your data.,這將永久刪除您的數據。, -Throttled,節流, -Thumbnail URL,縮略圖網址, -Time Interval,時間間隔, -Time Series,時間序列, -Time Series Based On,基於時間序列, -Time Zone,時區, -Time Zones,時區, -Time in seconds to retain QR code image on server. Min:240,在服務器上保留QR碼圖像的秒數。最小: 240, -Timeline DocType,時間軸的DocType, -Timeline Field,時間軸場, -Timeline Links,時間線鏈接, -Timeline Name,時間軸名稱, -Timeline field must be a Link or Dynamic Link,時間軸字段必須是一個鏈接或動態鏈接, -Timeline field must be a valid fieldname,時間軸場必須是有效的字段名, -Timeseries,時間序列, -Timestamp,時間戳, -Title Case,標題案例, -Title Field,標題字段, -Title Prefix,標題前綴, -Title field must be a valid fieldname,標題字段必須是有效的字段名, -To Do,待辦事項, -To User,給用戶, -"To add dynamic subject, use jinja tags like\n\n
New {{ doc.doctype }} #{{ doc.name }}
",要添加動態主題,請使用jinja標籤
 New {{ doc.doctype }} #{{ doc.name }} 
, -"To add dynamic subject, use jinja tags like\n\n
{{ doc.name }} Delivered
",要添加動態主題,用神社標籤,如
 {{ doc.name }} Delivered 
, -To and CC,到和CC, -"To get the updated report, click on {0}.",請點選{0}來取得更新的報表。, -ToDo,待辦事項, -Toggle Chart,切換圖表, -Toggle Charts,切換圖表, -Toggle Grid View,切換網格視圖, -Toggle Sidebar,切換邊欄, -Token,象徵, -Token is missing,令牌丟失, -"Too many users signed up recently, so the registration is disabled. Please try back in an hour",太多用戶簽約近日,所以報名無效。請嘗試一小時後回來, -Too many writes in one request. Please send smaller requests,太多的寫在一個請求。請將較小的請求, -Top Bar Item,頂欄項目, -Top Bar Items,頂欄項目, -Top Reviewer,評論員, -Total Pages,總頁數, -Total Rows,總行數, -Total Subscribers,用戶總數, -Total number of emails to sync in initial sync process ,郵件的總數在初始同步過程同步, -Totals Row,總計行, -Track Changes,跟踪變化, -Track Email Status,跟踪電子郵件狀態, -Track Field,田徑場, -Track Seen,軌道看, -Track Views,跟踪視圖, -"Track if your email has been opened by the recipient.\n
\nNote: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",跟踪收件人是否已打開您的電子郵件。
注意:如果您要向多個收件人發送郵件,即使有1個收件人閱讀該郵件,也會被視為“已打開”, -Track milestones for any document,跟踪任何文檔的里程碑, -Transaction Hash,事務哈希, -Transaction Log,事務日誌, -Transaction Log Report,事務日誌報告, -Transition Rules,過渡規則, -Transitions,轉換, -Translatable,可翻譯, -Translate {0},翻譯{0}, -Translated Text,翻譯文本, -Translation,翻譯, -Translations,翻譯, -Tree,樹, -Trigger Method,觸發方式, -Trigger Name,觸發器名稱, -"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",像“before_insert”,“after_update”等有效方法觸發(取決於所選的文檔類型), -Try to avoid repeated words and characters,盡量避免重複的單詞和字符, -Try to use a longer keyboard pattern with more turns,嘗試使用更多的匝數較長的鍵盤模式, -Two Factor Authentication,雙因素認證, -Two Factor Authentication method,雙因素認證方法, -Type something in the search box to search,鍵入在搜索框中輸入一些搜索, -Type:,類型:, -UNSEEN,看不見, -UPPER CASE,大寫字母, -"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.www.login.login_via_facebook",的URI,用於接收授權代碼一旦用戶允許訪問,以及失敗的響應。通常,REST端點的客戶端應用程序暴露出來。
例如http://hostname//api/method/frappe.www.login.login_via_facebook, -URLs,網址, -Unable to find attachment {0},無法找到附件{0}, -Unable to load camera.,無法加載相機。, -Unable to load: {0},無法載入: {0}, -Unable to open attached file. Did you export it as CSV?,無法打開附加的文件。你導出為CSV?, -Unable to read file format for {0},無法讀取{0}的文件格式, -Unable to send emails at this time,無法在這個時候發送電子郵件, -Unable to update event,無法更新事件, -Unable to write file format for {0},無法寫入{0}的文件格式, -Unassign Condition,取消分配條件, -Under Development,正在開發中, -Unfollow,取消關注, -Unhandled Email,未處理的郵件, -Unique,獨特, -Unknown Column: {0},未知專欄: {0}, -Unknown User,未知用戶, -"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.",未知文件編碼。嘗試UTF-8,windows-1250訪問,windows-1252訪問。, -Unread,未讀, -Unread Notification Sent,未讀發送通知, -Unselect All,全部取消選擇, -Unsubscribe,退訂, -Unsubscribe Method,退訂方法, -Unsubscribe Param,退訂參數, -Unzip,拉開拉鍊, -Unzipped {0} files,解壓縮{0}個文件, -Unzipping files...,解壓縮文件..., -Upcoming Events for Today,近期活動今日, -Update Field,更新欄位, -Update Translations,更新翻譯, -Update Value,更新價值, -Update many values at one time.,同時更新多個值。, -Update records,更新記錄, -Updated,更新, -Updated {0}: {1},更新了{0}:{1}, -Updating {0},正在更新{0}, -Upload Failed,上傳失敗, -Uploaded To Dropbox,上傳到Dropbox, -Use ASCII encoding for password,使用ASCII編碼作為密碼, -Use Different Email Login ID,使用不同的電子郵件登錄ID, -"Use a few words, avoid common phrases.",用幾個字,避免常用短語。, -Use of sub-query or function is restricted,子查詢或功能的使用受到限制, -Use socketio to upload file,使用socketio上傳文件, -Use this fieldname to generate title,使用該字段名來生成標題, -User '{0}' already has the role '{1}',用戶“{0}”已經擁有了角色“{1}”, -User Cannot Create,無法建立使用者, -User Cannot Search,無法搜尋使用者, -User Defaults,使用者預設, -User Email,用戶電子郵件, -User Emails,用戶電子郵件, -User Field,用戶字段, -User ID of a Blogger,一個博客的用戶ID, -User Image,使用者圖片, -User Name,用戶名, -User Permission,用戶權限, -User Permissions,用戶權限, -User Permissions are used to limit users to specific records.,用戶權限用於將用戶限製到特定的記錄。, -User Permissions created sucessfully,用戶權限已成功創建, -User Roles,用戶角色, -User Social Login,用戶社交登錄, -User Tags,用戶標籤, -User Type,用戶類型, -User can login using Email id or Mobile number,用戶可以使用電子郵件ID或手機號登錄, -User can login using Email id or User Name,用戶可以使用電子郵件ID或用戶名登錄, -User editable form on Website.,對網站的用戶可編輯的形式。, -User is mandatory for Share,用戶是強制性的分享, -User not allowed to delete {0}: {1},用戶不得刪除{0}:{1}, -User permission already exists,用戶權限已經存在, -User permissions should not apply for this Link,用戶權限不應該申請這個鏈接, -User {0} cannot be deleted,用戶{0}無法刪除, -User {0} cannot be disabled,用戶{0}不能被禁用, -User {0} cannot be renamed,用戶{0}無法重命名, -User {0} does not have access to this document,用戶{0}無權訪問此文檔, -User {0} does not have doctype access via role permission for document {1},用戶{0}沒有通過文檔{1}的角色權限訪問doctype, -Username,用戶名, -Username {0} already exists,用戶名{0}已存在, -Users with role {0}:,角色{0} 的用戶:, -Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,使用此帳戶中提到的電子郵件地址名稱作為使用此帳戶發送的所有電子郵件的發件人姓名。, -Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,使用這個帳戶提到發件人使用此帳戶發送的所有電子郵件的電子郵件地址。, -Valid Login id required.,有效的登錄ID必需的。, -Valid email and name required,需要有效的電子郵件和姓名, -Value Based On,價值觀基於, -Value Change,值變動, -Value Changed,更改的值, -Value To Be Set,價值待定, -Value cannot be changed for {0},值不能被改變為{0}, -Value for a check field can be either 0 or 1,一檢查字段值可以為0或1, -Value for {0} cannot be a list,{0}的值不能是列表, -Value missing for,價值缺失, -Value too big,值過大, -Values Changed,價值觀改變了, -Verdana,宋體, -Verfication Code,驗證碼, -Verification Link,驗證鏈接, -Verification code has been sent to your registered email address.,驗證碼已發送到您註冊的電子郵件地址。, -Verify,確認, -Verify Password,確認密碼, -Verifying...,驗證中..., -Version,版, -Version Updated,版本已更新, -View Comment,查看評論, -View Log,查看日誌, -View Permitted Documents,查看允許的文件, -View Properties (via Customize Form),視圖屬性(通過自定義窗體), -View Settings,視圖設置, -View Website,查看網站, -View document,查看文檔, -View report in your browser,在瀏覽器中查看報告, -View this in your browser,查看該在你的瀏覽器, -Viewed By,由...觀看, -Visit,訪問, -Visitor,遊客, -We have received a request for deletion of {0} data associated with: {1},我們收到了刪除與以下相關的{0}數據的請求:{1}, -We have received a request from you to download your {0} data associated with: {1},我們已收到您的請求,要求您下載與{1}相關聯的{0}數據, -Web Form,網頁表單, -Web Form Field,網頁表單欄位, -Web Form Fields,網頁表單欄位, -Web Page,網頁, -Web Page Link Text,網頁鏈接文本, -Web Site,網站, -Web View,Web視圖, -Webhook,網絡掛接, -Webhook Data,Webhook數據, -Webhook Header,Webhook標題, -Webhook Headers,Webhook標題, -Webhook Request,Webhook請求, -Webhooks calling API requests into web apps,Webhook將API請求調用到Web應用程序中, -Website Meta Tag,網站元標記, -Website Route Meta,網站路線元, -Website Route Redirect,網站路線重定向, -Website Script,網站腳本, -Website Sidebar,網站邊欄, -Website Sidebar Item,網站側欄項目, -Website Slideshow,網站連續播放, -Website Slideshow Item,網站幻燈片項目, -Website Theme,網站主題, -Website Theme Image,網站主題形象, -Website Theme Image Link,網站主題圖像鏈接, -Website User,網站用戶, -Welcome Message,歡迎消息, -"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",當您修改一個文件後,取消和保存,它會得到一個新的數字,是一個版本的舊號碼。, -Width,寬度, -Widths can be set in px or %.,寬度可以在像素或%設定。, -Will be used in url (usually first name).,在URL(通常是第一個名字)將被使用。, -Will be your login ID,將是您的登錄ID, -Will only be shown if section headings are enabled,如果章節標題啟用才會顯示, -With Letter head,隨著信頭, -With Letterhead,與信, -Workflow Action,工作流程執行, -Workflow Action Master,工作流操作主, -Workflow Action Name,工作流程執行名稱, -Workflow Document State,工作流程文件狀態, -Workflow Name,工作流程名稱, -Workflow State,工作流程狀態, -Workflow State Field,工作流程狀態字段, -Workflow State not set,工作流程狀態未設置, -Workflow Transition,工作流程轉換, -Workflow state represents the current state of a document.,工作流狀態表示文檔的當前狀態。, -Write,寫, -Wrong fieldname {0} in add_fetch configuration of custom script,自定義腳本的add_fetch配置中的字段名為{0}, -X Axis Field,X軸場, -Y Axis Fields,Y軸場, -Yahoo Mail,雅虎郵箱, -You are connected to internet.,你連接到互聯網。, -You are not allowed to create columns,你無權來創建列, -You are not allowed to delete a standard Website Theme,你不允許刪除標準的網站主題, -You are not allowed to print this document,你不允許列印此文件, -You are not allowed to print this report,您不允許打印此報告, -You are not allowed to send emails related to this document,你不被允許發送與此相關的文檔的電子郵件, -You are not allowed to update this Web Form Document,你不允許更新此網頁表單文件, -You are not connected to Internet. Retry after sometime.,你沒有連接到互聯網。在某個時間後重試。, -You are not permitted to access this page.,你不允許訪問此頁面。, -You are not permitted to view the newsletter.,您不能查看簡報。, -You are now following this document. You will receive daily updates via email. You can change this in User Settings.,您現在正在關注此文檔。您將通過電子郵件收到每日更新。您可以在“用戶設置”中進行更改。, -You can add dynamic properties from the document by using Jinja templating.,您可以通過使用Jinja模板從添加文件動態特性。, -You can also copy-paste this ,您也可以復制粘貼它, -"You can change Submitted documents by cancelling them and then, amending them.",您可以通過取消他們,然後,對其進行修正更改已提交的文件。, -You can find things by asking 'find orange in customers',你可以通過問“找到橙客戶找東西, -You can only upload upto 5000 records in one go. (may be less in some cases),你一次只能上最多5000條記錄。 (在某些情況下可能更少), -You can use Customize Form to set levels on fields.,您可以使用自定義表格中的字段設置的水平。, -You can use wildcard %,你可以使用通配符%, -You can't set 'Options' for field {0},您不能為字段{0}設置“選項”, -You can't set 'Translatable' for field {0},您無法為字段{0}設置“可翻譯”, -You cannot give review points to yourself,你不能給自己提供評論點, -You cannot unset 'Read Only' for field {0},你不能沒有設置'只讀'現場{0}, -You do not have enough permissions to access this resource. Please contact your manager to get access.,您沒有足夠的權限來訪問該資源。請聯繫您的經理,以獲得訪問權。, -You do not have enough permissions to complete the action,您沒有足夠的權限來完成動作, -You do not have enough points,你沒有足夠的積分, -You do not have enough review points,您沒有足夠的評論點, -You don't have access to Report: {0},您沒有訪問報告:{0}, -You don't have any messages yet.,你還沒有任何消息。, -You don't have permission to access this file,您沒有權限訪問該文件, -You don't have permission to get a report on: {0},你無權得到一份報告:{0}, -You don't have the permissions to access this document,您沒有訪問此文件的權限, -You gained {0} point,你獲得了{0}分, -You gained {0} points,你獲得了{0}分, -You have a new message from: ,您有來自的新消息:, -You have been successfully logged out,您已成功退出, -You have unsaved changes in this form. Please save before you continue.,你在本表格未保存的更改。, -You must login to submit this form,您必須登錄才能提交此表單, -You need to be in developer mode to edit a Standard Web Form,你需要在開發模式編輯標準Web窗體, -You need to be logged in and have System Manager Role to be able to access backups.,您需要先登錄,並具有系統管理員角色才能夠訪問備份。, -You need to be logged in to access this {0}.,您需要登錄才能訪問此{0}。, -"You need to have ""Share"" permission",你需要有“共享”權限, -You need write permission to rename,您需要寫入權限才能重新命名, -You selected Draft or Cancelled documents,您選擇了草稿或已取消的文檔, -You unfollowed this document,你取消了這份文件, -Your Country,你的國家, -Your Language,你的語言, -Your Name,你的名字, -Your account has been locked and will resume after {0} seconds,您的帳戶已被鎖定,並將在{0}秒後恢復, -Your connection request to Google Calendar was successfully accepted,您的Google日曆連接請求已成功接受, -Your information has been submitted,您的資料已提交, -Your login id is,您的登錄ID是, -Your organization name and address for the email footer.,您的組織名稱和地址為電子郵件的頁尾。, -Your payment has been successfully registered.,您的付款已成功註冊。, -Your payment has failed.,您的付款失敗。, -"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",查詢已收到。我們將儘快回覆郵件。如果您有任何其他的訊息,請回覆此郵件。, -"Your session has expired, please login again to continue.",您的會話已過期,請再次登錄以繼續。, -Zero means send records updated at anytime,零表示隨時更新發送記錄, -_doctype,_文件格式, -_report,_報告, -adjust,調整, -align-center,對準中心, -align-justify,對齊對齊, -align-left,靠左對齊, -align-right,靠右對齊, -ap-northeast-1,AP-東北-1, -ap-northeast-2,AP-東北-2, -ap-northeast-3,AP-東北-3, -ap-southeast-1,AP-東南-1, -ap-southeast-2,AP-東南-2, -arrow-down,箭頭向下, -arrow-left,箭頭左, -arrow-right,箭頭向右, -arrow-up,向上箭頭, -asterisk,星號, -backward,落後, -ban-circle,禁令圈, -bell,鐘, -bookmark,書籤, -bullhorn,擴音器, -camera,相機, -cancelled this document,取消了這份文件, -changed value of {0},的改變後的值{0}, -changed values for {0},用於改變的值{0}, -chevron-down,人字形-下, -chevron-left,人字形-左, -chevron-right,人字形-右, -chevron-up,人字形-上, -circle-arrow-down,圓圈箭頭向下, -circle-arrow-left,圓圈箭頭向左, -circle-arrow-right,圓圈箭頭向右, -circle-arrow-up,圓圈箭頭向上, -cog,COG, -dd-mm-yyyy,dd-mm-yyyy, -dd.mm.yyyy,dd.mm.yyyy, -dd/mm/yyyy,dd/mm/yyyy, -"document type..., e.g. customer",文檔類型...,如客戶, -download-alt,下載的Alt, -"e.g. ""Support"", ""Sales"", ""Jerry Yang""",例如“支持“,”銷售“,”傑里楊“, -e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例如(55 + 434)/ 4或= Math.sin(Math.PI / 2)......, -e.g. replies@yourcomany.com. All replies will come to this inbox.,如replies@yourcomany.com。所有答复將得出這樣的收件箱。, -eject,噴射, -envelope,信封, -eu-north-1,歐盟 - 北 - 1, -eu-west-1,歐盟 - 西1, -eu-west-2,歐盟 - 西2, -eu-west-3,歐盟 - 西3號, -exclamation-sign,驚嘆號標誌, -eye-close,眼睛閉, -eye-open,眼開, -facetime-video,FaceTime的視頻, -fairlogin,fairlogin, -fast-forward,快進, -film,影片, -fire,火, -folder-close,文件夾閉, -folder-open,文件夾打開, -gained by {0} via automatic rule {1},由{0}通過自動規則{1}獲得, -gained {0} points,獲得{0}分, -gave {0} points,給了{0}分, -gift,禮物, -globe,地球, -hand-down,手向下, -hand-left,手向左, -hand-right,手向右, -hand-up,手向上, -hdd,硬盤, -headphones,頭戴耳機, -heart,心臟, -hub,樞紐, -indent-left,左邊縮排, -indent-right,右邊縮排, -info-sign,資訊符號, -italic,斜體, -just now,剛剛, -leaf,休假, -lightblue,淺藍, -list-alt,列表ALT, -magnet,磁鐵, -map-marker,地圖標記, -merged {0} into {1},{0}合併為{1}, -minus,減, -minus-sign,減號, -mm-dd-yyyy,mm-dd-yyyy, -mm/dd/yyyy,mm/dd/yyyy, -module name...,模塊的名稱..., -new type of document,新類型的文件, -no failed attempts,沒有失敗的嘗試, -none of,沒有, -ok,好, -ok-circle,OK-圈, -ok-sign,OK符號, -only.,整, -or,要么, -pause,暫停, -pencil,鉛筆, -picture,圖片, -plane,飛機, -play-circle,遊戲圈, -plus-sign,加號, -qrcode,QRcode, -query-report,查詢的報告, -question-sign,問號, -remove-circle,刪除圈, -remove-sign,刪除符號, -renamed from {0} to {1},從更名{0}到{1}, -repeat,重複, -resize-full,調整大小-滿版, -resize-horizontal,調整大小-水平, -resize-small,調整大小-小, -resize-vertical,調整大小-垂直, -restored {0} as {1},恢復{0}為{1}, -retweet,轉推, -road,路, -sa-east-1,SA-東1, -screenshot,屏幕截圖, -share-alt,股份ALT, -shopping-cart,購物車, -show,顯示, -signal,信號, -star,星號, -star-empty,明星空, -step-backward,往後退, -step-forward,往前進, -submitted this document,提交這份文件, -text in document type,在文件類型的文本, -text-width,文字寬度, -th,日, -th-large,TH-大, -th-list,日列表, -thumbs-down,不看好, -thumbs-up,豎起大拇指, -tint,著色, -toggle Tag,切換標籤, -updated to {0},更新為{0}, -us-east-1,美國 - 東 - 1, -us-east-2,美東2, -use % as wildcard,使用%作為通配符, -values separated by commas,用逗號分隔的值, -via automatic rule {0} on {1},通過{1}上的自動規則{0}, -viewed,觀看, -volume-down,容積式, -volume-off,體積過, -volume-up,容積式, -warning-sign,警告符號, -wrench,扳手, -yyyy-mm-dd,年 - 月 - 日, -zoom-out,縮小, -{0} Calendar,{0}日曆, -{0} Chart,{0}圖表, -{0} Dashboard,{0}儀表板, -{0} List,{0}目錄, -{0} Modules,{0}模塊, -{0} Report,{0}報告, -{0} Settings not found,{0}沒有找到設置, -{0} Tree,{0}樹, -{0} added,{0}已增加, -{0} already exists. Select another name,{0}已存在。選擇其他名稱, -{0} already unsubscribed,{0}已經退訂, -{0} already unsubscribed for {1} {2},{0}已經退訂給{1} {2}, -{0} appreciated on {1},{0}讚賞{1}, -{0} appreciated your work on {1} with {2} point,{0}讚賞您在{1}點上的工作{2}, -{0} appreciated your work on {1} with {2} points,{0}讚賞您使用{2}積分在{1}上的工作, -{0} appreciated {1},{0}讚賞{1}, -{0} appreciation point for {1} {2},{0} {1} {2}的升值點, -{0} appreciation points for {1} {2},{0} {1} {2}的升值點, -{0} cannot be set for Single types,{0}不能設定為單一類型, -{0} comments,{0}評論, -{0} created successfully,{0}已成功創建, -{0} criticism point for {1} {2},{0}對{1} {2}的批評點, -{0} criticism points for {1} {2},{0}對{1} {2}的批評點, -{0} criticized on {1},{0}批評{1}, -{0} criticized your work on {1} with {2} point,{0}以{2}點批評了您在{1}上的工作, -{0} criticized your work on {1} with {2} points,{0}以{2}分批評你在{1}上的工作, -{0} criticized {1},{0}批評{1}, -{0} does not exist in row {1},{0}不存在的行中{1}, -"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能設置在{1}是獨一無二的,因為有非唯一存在的價值, -{0} has already assigned default value for {1}.,{0}已為{1}分配了默認值。, -{0} has been successfully added to the Email Group.,{0}已成功添加到電子郵件組。, -{0} has left the conversation in {1} {2},{0}已經離開聊天室{1} {2}, -{0} hours ago,{0}小時前, -{0} in row {1} cannot have both URL and child items,第{1}行的{0}不能同時有URL和子項, -{0} is an invalid email address in 'Recipients',{0}是“收件人”中的無效電子郵件地址, -{0} is not a valid Email Address,{0}不是有效的電子郵件地址, -{0} is not a valid Workflow State. Please update your Workflow and try again.,{0}不是有效的工作流程狀態。請更新您的工作流程,然後重試。, -{0} is now default print format for {1} doctype,{0}現在是{1}類型的默認打印格式, -{0} is saved,{0}已儲存, -{0} items selected,選擇{0}項目, -{0} logged in,{0}已登入, -{0} logged out: {1},{0}登出:{1}, -{0} minutes ago,{0}分鐘前, -{0} months ago,{0}個月前, -{0} must be one of {1},{0}必須是{1} 之一, -{0} must be set first,{0}必須先設定, -{0} must be unique,{0}必須是獨特的, -{0} not a valid State,{0}不是有效的國家, -{0} not allowed to be renamed,{0}不允許改名, -{0} not found,找不到{0}, -{0} of {1},{1}的{0}, -{0} record deleted,{0}記錄已刪除, -{0} records deleted,已刪除{0}條記錄, -{0} reverted your point on {1},{0}在{1}上恢復了你的觀點, -{0} reverted your points on {1},{0}在{1}上恢復了積分, -{0} reverted {1},{0}還原{1}, -{0} room must have atmost one user.,{0}會議室必須至少有一個用戶。, -{0} rows for {1},{0}的行{1}, -{0} self assigned this task: {1},{0}自行分配此任務:{1}, -{0} shared this document with everyone,{0}與每個人共享該文件, -{0} shared this document with {1},{0}與{1}共享這個文件, -{0} subscribers added,{0}用戶已新增, -{0} to stop receiving emails of this type,{0}停止接收此類型的電子郵件, -{0} un-shared this document with {1},{0}停止與{1}未共享這個文件, -{0} weeks ago,{0}週前, -{0} {1} already exists,{0} {1}已經存在, -"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} 不能為“{2}”。它應該是“{3}”的其中一個, -{0} {1} cannot be a leaf node as it has children,{0} {1}不能是一個葉節點,因為它有子節點, -"{0} {1} does not exist, select a new target to merge","{0} {1} 不存在, 請選擇要合併的新目標", -{0} {1} not found,找不到{0} {1}, -{0} {1} to {2},{0} {1}到{2}, -"{0}, Row {1}",{0},行{1}, -"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:“{1}”({3})將被截斷,因為允許的上限字符為{2}, -{0}: Cannot set Amend without Cancel,{0} :如果沒有取消便無法設為修改, -{0}: Cannot set Assign Amend if not Submittable,{0} :如果不可提交的話,便無法設為指定修改, -{0}: Cannot set Assign Submit if not Submittable,{0} :如果不可提交的話,便無法設為指定提交, -{0}: Cannot set Cancel without Submit,{0} :沒有提交便無法設為取消, -{0}: Cannot set Import without Create,{0} :沒有建立則無法設定導入, -"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :沒有寫入則無法設定提交,取消,修改, -{0}: Cannot set import as {1} is not importable,{0} :無法設定導入,因為{1}不是可導入的, -{0}: No basic permissions set,{0} :無基本權限設定, -"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:只具允許有一個同的角色,級別和{1}, -{0}: Permission at level 0 must be set before higher levels are set,{0} :權限在0水平必須於更高級別前設定, -{0}: {1} in {2},{0}:{2}中的{1}, -{0}: {1} is set to state {2},{0}:{1}設置為狀態{2}, -{app_title},{ app_title }, -{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} 不是一個有效欄位名模式。它應該是{{FIELD_NAME}}。, -Communication Link,通訊鏈接, -Force User to Reset Password,強制用戶重置密碼, -Last Password Reset Date,上次密碼重置日期, -The password of your account has expired.,您帳戶的密碼已過期。, -Workflow State transition not allowed from {0} to {1},不允許從{0}到{1}的工作流狀態轉換, -{0} must be after {1},{0}必須在{1}之後, -{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}:字段“{1}”無法設置為“唯一”,因為它具有非唯一值, -{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}中的字段{1}無法隱藏,並且在沒有默認情況下是必需的, -{0}: Field {1} of type {2} cannot be mandatory,{0}:類型{2}的字段{1}不能是必需的, -{0}: Fieldname {1} appears multiple times in rows {2},{0}:字段名{1}在行{2}中多次出現, -{0}: Fieldtype {1} for {2} cannot be unique,{0}:{2}的字段類型{1}不能是唯一的, -{0}: Options must be a valid DocType for field {1} in row {2},{0}:選項必須是行{2}中字段{1}的有效DocType, -{0}: Options required for Link or Table type field {1} in row {2},{0}:行{2}中的鏈接或表類型字段{1}所需的選項, -{0}: Options {1} must be the same as doctype name {2} for the field {3},{0}:選項{1}必須與字段{3}的文檔類型名稱{2}相同, -{0}:Fieldtype {1} for {2} cannot be indexed,{0}:無法為{2}的字段類型{1}編制索引, -Make {0},製作{0}, -A user who posts blogs.,發布博客的用戶。, -Applying: {0},申請:{0}, -Is Optional State,是可選國家, -No values to show,沒有要顯示的值, -View Ref,查看參考, -Workflow Action is not created for optional states,不為可選狀態創建工作流操作, -{0} values selected,已選擇{0}個值, -"""amended_from"" field must be present to do an amendment.",必須出現“modified_from”字段才能進行修改。, -(Mandatory),(必須), -1 Google Calendar Event synced.,1個Google日曆活動已同步。, -1 record will be exported,將導出1條記錄, -1 week ago,1週前, -5 Records,5條記錄, -A recurring {0} {1} has been created for you via Auto Repeat {2}.,通過自動重複{2}為您創建了一個重複的{0} {1}。, -API,API, -About {0} minute remaining,剩餘約{0}分鐘, -About {0} minutes remaining,剩餘約{0}分鐘, -About {0} seconds remaining,剩餘約{0}秒, -Access Log,訪問日誌, -Access not allowed from this IP Address,不允許從該IP地址訪問, -Action Type,動作類型, -Activity Log by ,活動記錄, -Add Fields,新增欄位, -After Cancel,取消後, -After Delete,刪除後, -After Save,保存後, -After Save (Submitted Document),保存後(提交的文檔), -After Submit,提交後, -Aggregate Function Based On,基於的聚合函數, -Aggregate Function field is required to create a dashboard chart,創建儀錶盤圖需要“匯總功能”字段, -All Records,所有記錄, -Allot Points To Assigned Users,向分配的用戶分配點, -Allow Auto Repeat,允許自動重複, -Allow Google Calendar Access,允許Google日曆訪問權限, -Allow Google Contacts Access,允許Google通訊錄訪問, -Allow Google Drive Access,允許Google Drive訪問, -Allow Guest,允許訪客, -Allow Guests to Upload Files,允許訪客上傳文件, -Also adding the status dependency field {0},還添加狀態依賴項字段{0}, -An error occurred while setting Session Defaults,設置會話默認值時發生錯誤, -Annual,年刊, -Append Emails to Sent Folder,將電子郵件追加到已發送文件夾, -Apply Assignment Rule,應用分配規則, -Apply Only Once,僅申請一次, -Apply this rule only once per document,每個文檔僅應用一次此規則, -Approved,批准, -Are you sure you want to delete all rows?,您確定要刪除所有行嗎?, -Are you sure you want to delete this post?,你確定你要刪除這個帖子?, -Are you sure you want to merge {0} with {1}?,您確定要將{0}與{1}合併嗎?, -Assignment Day {0} has been repeated.,分配日{0}已重複。, -Assignment Days,作業日, -Assignment Rule Day,分配規則日, -Assignments,作業, -Attach a web link,附加網絡鏈接, -Authorize Google Calendar Access,授權Google日曆訪問權限, -Authorize Google Contacts Access,授權Google通訊錄訪問權限, -Authorize Google Drive Access,授權Google Drive Access, -Auto Repeat Document Creation Failed,自動重複文檔創建失敗, -Auto Repeat Document Creation Failure,自動重複文檔創建失敗, -Auto Repeat created for this document,為此文檔創建了自動重複, -Auto Repeat failed for {0},{0}自動重複失敗, -Automatic Linking can be activated only for one Email Account.,只能為一個電子郵件帳戶激活自動鏈接。, -Automatic Linking can be activated only if Incoming is enabled.,僅當啟用了“傳入”時,才能激活自動鏈接。, -Automatically generates recurring documents.,自動生成定期文檔。, -Backing up to Google Drive.,備份到Google雲端硬盤。, -Backup Folder ID,備份文件夾ID, -Backup Folder Name,備份文件夾名稱, -Before Delete,刪除之前, -Before Save (Submitted Document),保存之前(提交的文檔), -Callback URL,回調網址, -Cannot match column {0} with any field,無法將列{0}與任何字段匹配, -Change User,改變用戶, -Check the Error Log for more information: {0},檢查錯誤日誌以獲取更多信息:{0}, -Clear Cache and Reload,清除緩存和重新加載, -Clear Filters,清除過濾器, -Click on Authorize Google Drive Access to authorize Google Drive Access.,點擊授權Google雲端硬盤訪問權限以授權Google雲端硬盤訪問權限。, -Click on a file to select it.,單擊文件以選擇它。, -Click on the link below to approve the request,單擊下面的鏈接批准該請求, -Click on the lock icon to toggle public/private,單擊鎖定圖標以切換公共/私人, -Click on {0} to generate Refresh Token.,單擊{0}以生成刷新令牌。, -Close Condition,關閉條件, -"Configure notifications for mentions, assignments, energy points and more.",配置有關提及,任務,能量點等的通知。, -Contact Email,聯絡電郵, -Contact Numbers,聯絡電話, -Contact Phone,聯繫電話, -Contact Synced with Google Contacts.,與Google通訊錄聯繫。, -Context,語境, -Contribute Translations,貢獻翻譯, -Contributed,貢獻的, -Controller method get_razorpay_order missing,控制器方法get_razorpay_order丟失, -Copied to clipboard.,複製到剪貼板。, -Core Modules {0} cannot be searched in Global Search.,無法在全局搜索中搜索核心模塊{0}。, -Could not create Razorpay order. Please contact Administrator,無法創建Razorpay訂單。請聯繫管理員, -Could not create razorpay order,無法創建razorpay訂單, -Create Log,創建日誌, -Create your first {0},創建您的第一個{0}, -Created {0} records successfully.,已成功創建{0}條記錄。, -Daily Events should finish on the Same Day.,每日活動應在同一天結束。, -Daily Long,每日長, -Default Role on Creation,創建時的默認角色, -Default Theme,默認主題, -Default {0},默認{0}, -Delete All,刪除所有, -Do you want to cancel all linked documents?,您要取消所有鏈接的文檔嗎?, -DocType Link,DocType鏈接, -Document Tag,文件標籤, -Document Type Field Mapping,文檔類型字段映射, -Document Type Mapping,文件類型對應, -Document Type {0} has been repeated.,文檔類型{0}已重複。, -Document renamed from {0} to {1},文檔從{0}重命名為{1}, -Document type is required to create a dashboard chart,創建儀表板圖表需要文檔類型, -Documentation Link,文檔鏈接, -Don't Import,不要導入, -Don't Send Emails,不要發送電子郵件, -Drop Here,放在這裡, -Drop files here,刪除文件, -Dynamic Template,動態模板, -Email / Notifications,郵件通知, -Email Account setup please enter your password for: {0},電子郵件帳戶設置,請輸入您的密碼:{0}, -Email Address whose Google Contacts are to be synced.,要同步其Google通訊錄的電子郵件地址。, -"Email ID must be unique, Email Account already exists for {0}",電子郵件ID必須是唯一的,{0}的電子郵件帳戶已經存在, -Email IDs,電子郵件ID, -Enable Allow Auto Repeat for the doctype {0} in Customize Form,在“自定義表單”中為doctype {0}啟用“允許自動重複”, -Enable Automatic Linking in Documents,啟用文檔中的自動鏈接, -Enable Email Notifications,啟用電子郵件通知, -Enable Google API in Google Settings.,在Google設置中啟用Google API。, -Enable Security,啟用安全性, -Energy Point,能量點, -Enter Client Id and Client Secret in Google Settings.,在Google設置中輸入客戶端ID和客戶端密鑰。, -Enter Code displayed in OTP App.,輸入OTP App中顯示的代碼。, -Event Consumer,活動消費者, -Event Consumer Document Type,事件使用者文檔類型, -Event Consumer Document Types,事件消費者文檔類型, -Event Producer,活動製作人, -Event Producer Document Type,事件生產者文檔類型, -Event Producer Document Types,事件生產者文檔類型, -Event Subscriber,事件訂閱者, -Event Sync Log,事件同步日誌, -Event Synced with Google Calendar.,活動與Google日曆同步。, -Event Update Log,事件更新日誌, -Export 1 record,導出1條記錄, -Export Errored Rows,導出錯誤的行, -Export From,從中導出, -Export Type,導出類型, -Export {0} records,導出{0}條記錄, -Failed to connect to the Event Producer site. Retry after some time.,無法連接到事件生產者站點。一段時間後重試。, -Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,無法創建事件使用者或當前站點的事件使用者已被註冊。, -Failure,失敗, -Fetching default Global Search documents.,正在獲取默認的全局搜索文檔。, -Fetching posts...,獲取帖子......, -Field Mapping,場圖, -Field To Check,要檢查的領域, -File Information,檔案資訊, -Filter By,過濾, -Filtered Records,篩選記錄, -Filters applied for {0},適用於{0}的過濾器, -Finished,已完成, -For Document Event,對於文件活動, -"For more information, click here.","有關更多信息, 請單擊此處 。", -"For more information, {0}.",有關更多信息,請{0}。, -"For performance, only the first 100 rows were processed.",為了提高性能,僅處理了前100行。, -Form URL-Encoded,表單URL編碼, -Frequently Visited Links,經常訪問的鏈接, -From Date,從日期, -From User,來自用戶, -Global Search Document Types Reset.,全局搜索文檔類型重置。, -Global Search Settings,全局搜索設置, -Global Shortcuts,全球捷徑, -Go to next record,轉到下一條記錄, -Go to previous record,轉到上一條記錄, -Google API Settings.,Google API設置。, -Google Calendar,Google日曆, -"Google Calendar - Could not create Calendar for {0}, error code {1}.",Google日曆 - 無法為{0}創建日曆,錯誤代碼為{1}。, -"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google日曆 - 無法從Google日曆中刪除事件{0},錯誤代碼為{1}。, -"Google Calendar - Could not fetch event from Google Calendar, error code {0}.",Google日曆 - 無法從Google日曆中獲取事件,錯誤代碼為{0}。, -"Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}.",Google日曆 - 無法在Google通訊錄{0}中插入聯繫人,錯誤代碼為{1}。, -"Google Calendar - Could not insert event in Google Calendar {0}, error code {1}.",Google日曆 - 無法在Google日曆{0}中插入事件,錯誤代碼為{1}。, -"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google日曆 - 無法更新Google日曆中的活動{0},錯誤代碼為{1}。, -Google Calendar Event ID,Google日曆活動ID, -Google Calendar Integration.,Google日曆集成。, -Google Calendar has been configured.,Google日曆已配置完畢。, -Google Contacts,Google通訊錄, -"Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}.",Google通訊錄 - 無法同步Google通訊錄{0}中的聯繫人,錯誤代碼{1}。, -"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",Google通訊錄 - 無法更新Google通訊錄{0}中的聯繫人,錯誤代碼{1}。, -Google Contacts Id,Google通訊錄ID, -Google Contacts Integration is disabled.,Google聯繫人集成已停用。, -Google Contacts Integration.,Google通訊錄集成。, -Google Contacts has been configured.,已配置Google通訊錄。, -Google Drive,Google Drive, -Google Drive - Could not create folder in Google Drive - Error Code {0},Google雲端硬盤 - 無法在Google雲端硬盤中創建文件夾 - 錯誤代碼{0}, -Google Drive - Could not find folder in Google Drive - Error Code {0},Google雲端硬盤 - 在Google雲端硬盤中找不到文件夾 - 錯誤代碼{0}, -Google Drive Backup Successful.,Google雲端硬盤備份成功。, -Google Drive Backup.,Google雲端硬盤備份。, -Google Drive Integration.,Google雲端硬盤集成。, -Google Drive has been configured.,已配置Google雲端硬盤。, -Google Integration is disabled.,Google集成已禁用。, -Google Settings,Google設置, -Group By,通過...分組, -Group By Based On,分組依據, -Group By Type,按類型分組, -Group By field is required to create a dashboard chart,“分組依據”字段是創建儀錶盤圖表所必需的, -HOOK-.####,鉤-。####, -HTML Page,HTML頁面, -Hourly Long,每小時長, -"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",如果是非標準端口(例如POP3:995/110,IMAP:993/143), -If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,如果文檔在生產者和消費者端具有不同的字段名稱,請檢查並設置映射, -If this is checked the documents will have the same name as they have on the Event Producer's site,如果選中此選項,則文檔的名稱將與事件生產者網站上的名稱相同, -Illegal SQL Query,非法SQL查詢, -Import File,導入文件, -Import Log Preview,導入日誌預覽, -Import Preview,導入預覽, -Import Progress,進口進度, -Import Type,導入類型, -Import Warnings,導入警告, -"Import template should be of type .csv, .xlsx or .xls",導入模板的類型應為.csv,.xlsx或.xls, -Import template should contain a Header and atleast one row.,導入模板應包含標題和至少一行。, -Importing {0} of {1},導入{1}的{0}, -"Importing {0} of {1}, {2}",導入{1},{2}中的{0}, -Include indentation,包括縮進, -Incoming Change,即將到來的變化, -Invalid Filter Value,無效的過濾器值, -Invalid URL,無效的網址, -Invalid field name: {0},字段名稱無效:{0}, -Invalid file URL. Please contact System Administrator.,無效的文件URL。請聯繫系統管理員。, -Invalid include path,包含路徑無效, -Invalid username or password,用戶名或密碼無效, -Is Primary Mobile,是主要手機, -Is Primary Phone,是主要電話, -Is Tree,是樹, -JSON Request Body,JSON請求正文, -Javascript is disabled on your browser,您的瀏覽器禁用了Javascript, -Jump to field,跳到現場, -Keyboard Shortcuts,鍵盤快捷鍵, -LDAP Group,LDAP組, -LDAP Group Field,LDAP組字段, -LDAP Group Mapping,LDAP組映射, -LDAP Group Mappings,LDAP組映射, -LDAP Middle Name Field,LDAP中間名字段, -LDAP Mobile Field,LDAP移動字段, -LDAP Phone Field,LDAP電話字段, -LDAP User Creation and Mapping,LDAP用戶創建和映射, -Landscape,景觀, -Last,持續, -Last Backup On,上次備份, -Last Execution,最後執行, -Last Sync On,上次同步開啟, -Last Update,最後更新, -Last refreshed,最後刷新了, -Link Document Type,鏈接文件類型, -Link Fieldname,鏈接字段名稱, -Loading import file...,正在載入匯入檔案..., -Local Document Type,本地文件類型, -Log Data,日誌數據, -Main Section (Markdown),主要部分(降價), -"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",在事件生產者網站上維護具有使用者的文檔的所有插入,更新和刪除的日誌。, -Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,保留所有消耗的事件的日誌以及同步狀態和“重新同步”按鈕,以防同步失敗。, -Make all attachments private,將所有附件設為私有, -Mandatory Depends On,強制取決於, -Map Columns,地圖列, -Map columns from {0} to fields in {1},將列從{0}映射到{1}中的字段, -Mapping column {0} to field {1},將列{0}映射到字段{1}, -Mark all as Read,標記為已讀, -Maximum Points,最高積分, -Maximum points allowed after multiplying points with the multiplier value\n(Note: For no limit leave this field empty or set 0),將點乘以乘數值後允許的最大點(注意:無限制,將此字段留空或設置為0), -Modules,模塊, -Monthly Long,每月長, -Naming Series,命名系列, -Navigate Home,導航回家, -Navigate list down,向下導航列表, -Navigate list up,導航列表, -New {0}: {1},新的{0}:{1}, -Newsletter should have atleast one recipient,通訊應該至少有一個收件人, -No Events Today,今天沒有活動, -No Google Calendar Event to sync.,沒有要同步的Google日曆活動。, -No More Activity,沒有更多的活動, -No Name Specified for {0},沒有為{0}指定名稱, -No Upcoming Events,沒有即將發生的事件, -No activity,沒有活動, -No conditions provided,沒有提供條件, -No contacts linked to document,沒有聯繫人鏈接到文檔, -No data to export,沒有要導出的數據, -No documents found tagged with {0},找不到標有{0}的文檔, -No failed logs,沒有失敗的日誌, -No filters found,找不到過濾器, -No more items to display,沒有更多要顯示的項目, -No more posts,沒有更多的帖子, -No new Google Contacts synced.,沒有新的Google通訊錄同步。, -No pending or current jobs for this site,此站點沒有待處理或當前作業, -No posts yet,還沒有帖子, -No records will be exported,沒有記錄將被導出, -No results found for {0} in Global Search,在全局搜索中找不到與{0}相關的結果, -No user found,找不到用戶, -Not Specified,未標明, -Notification Log,通知日誌, -Notification Settings,通知設置, -Notification Subscribed Document,通知訂閱文件, -Number of Groups,組數, -OAuth Client ID,OAuth客戶端ID, -OTP setup using OTP App was not completed. Please contact Administrator.,使用OTP應用程序的OTP設置未完成。請聯繫管理員。, -Only one {0} can be set as primary.,只能將一個{0}設置為主。, -Open Awesomebar,打開Awesomebar, -Open Chat,打開聊天, -Open Documents,打開文件, -Open Help,打開幫助, -Open Settings,打開設置, -Open list item,打開列表項, -Organizational Unit for Users,用戶組織單位, -Page Shortcuts,頁面快捷方式, -Parent Field (Tree),父田(樹), -Parent Field must be a valid fieldname,父字段必須是有效的字段名稱, -Pin Globally,全球銷, -Please check the filter values set for Dashboard Chart: {},請檢查為儀錶盤圖表設置的過濾器值:{}, -Please enable pop-ups in your browser,請在瀏覽器中啟用彈出窗口, -Please find attached {0}: {1},請查找附件{0}:{1}, -Please select applicable Doctypes,請選擇適用的Doctypes, -Press Alt Key to trigger additional shortcuts in Menu and Sidebar,按Alt鍵可在菜單和側欄中觸發其他快捷方式, -Print Settings...,打印設置..., -Producer Document Name,生產者文件名稱, -Producer URL,生產者網址, -Property Depends On,屬性取決於, -Pull from Google Calendar,從Google日曆中提取, -Pull from Google Contacts,從Google通訊錄中提取, -Pulled from Google Calendar,從Google日曆中拉出, -Pulled from Google Contacts,來自Google通訊錄, -Push to Google Calendar,推送到Google日曆, -Push to Google Contacts,推送到Google通訊錄, -Queue / Worker,隊列/工人, -RAW Information Log,RAW信息日誌, -Raw Printing Settings...,原始打印設置..., -Read Only Depends On,只讀取決於, -Recent Activity,近期活動, -Reference document has been cancelled,參考文件已被取消, -Reload File,重新載入檔案, -Remote Document Type,遠端文件類型, -"Renamed files and replaced code in controllers, please check!",重命名文件並替換控制器中的代碼,請檢查!, -Repeat on Last Day of the Month,在本月的最後一天重複, -Repeats {0},重複{0}, -Report Information,報告信息, -Report with more than 10 columns looks better in Landscape mode.,在橫向模式下,超過10列的報告看起來更好。, -Request Structure,請求結構, -Restrictions,限制條件, -Row Number,行號, -Run Jobs only Daily if Inactive For (Days),僅在(天)不活動的情況下每天運行作業, -SMS was not sent. Please contact Administrator.,短信未發送。請聯繫管理員。, -Scheduled Job,預定工作, -Scheduled Job Log,計劃作業日誌, -Scheduled Job Type,預定作業類型, -Scheduler Inactive,調度程序無效, -Scheduler is inactive. Cannot import data.,調度程序處於非活動狀態。無法導入數據。, -Script Manager,腳本管理器, -Script Type,腳本類型, -Search Priorities,搜索優先級, -Search by filename or extension,按文件名或擴展名搜索, -Select Date Range,選擇日期範圍, -Select Field,選擇字段, -Select Field...,選擇字段..., -Select Filters,選擇過濾器, -Select Google Calendar to which event should be synced.,選擇要同步哪個事件的Google日曆。, -Select Google Contacts to which contact should be synced.,選擇要同步聯繫人的Google通訊錄。, -Select Group By...,選擇分組依據..., -Select Mandatory,強制性選擇, -Select atleast 2 actions,選擇至少2個動作, -Select list item,選擇列表項, -Select multiple list items,選擇多個列表項, -Send an email to {0} to link it here,發送電子郵件至{0}以在此處鏈接, -Server Action,服務器動作, -Server Script,服務器腳本, -Session Default,會話默認, -Session Default Settings,會話默認設置, -Session Defaults,會話默認值, -Session Defaults Saved,會話默認值已保存, -Set as Default Theme,設為默認主題, -Setting up Global Search documents.,設置全局搜索文檔。, -Show Document,顯示文件, -Show Failed Logs,顯示失敗的日誌, -Show Keyboard Shortcuts,顯示鍵盤快捷鍵, -Show More Activity,顯示更多活動, -Show Traceback,顯示回溯, -Show Warnings,顯示警告, -Showing only first {0} rows out of {1},僅顯示{1}中的前{0}行, -"Simple Python Expression, Example: Status in (""Invalid"")",簡單的Python表達式,示例:狀態(“無效”), -Skipping Untitled Column,跳過無標題列, -Skipping column {0},跳過列{0}, -Social Home,社會之家, -Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,打印到PDF時,某些列可能會被切斷。盡量保持列數低於10。, -Something went wrong during the token generation. Click on {0} to generate a new one.,在令牌生成期間出了點問題。單擊{0}以生成新的。, -Submit After Import,導入後提交, -Success! You are good to go 👍,成功!你很高興去👍, -Successfully imported {0} record.,已成功導入{0}記錄。, -Successfully imported {0} records.,成功導入了{0}條記錄。, -Successfully updated {0} record.,成功更新了{0}條記錄。, -Successfully updated {0} records.,已成功更新{0}條記錄。, -Sync Calendar,同步日曆, -Sync Contacts,通訊錄同步, -Sync with Google Calendar,與Google日曆同步, -Sync with Google Contacts,與Google通訊錄同步, -Syncing,正在同步, -Syncing {0} of {1},正在同步{1}的{0}, -Tag Link,標籤鏈接, -Take Backup,備份, -Template Error,模板錯誤, -Template Options,模板選項, -The Auto Repeat for this document has been disabled.,此文檔的自動重複已被禁用。, -The following records needs to be created before we can import your file.,在導入文件之前,需要創建以下記錄。, -The mapping configuration between two doctypes.,兩個文檔類型之間的映射配置。, -The site which is consuming your events.,正在使用您的事件的站點。, -The site you want to subscribe to for consuming events.,您要訂閱消費事件的站點。, -The webhook will be triggered if this expression is true,如果此表達式為true,則將觸發webhook, -The {0} is already on auto repeat {1},{0}已經自動重複{1}, -There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,在我們導入您的文件之前,需要創建一些鏈接記錄。您是否要自動創建以下丟失的記錄?, -There should be atleast one row for the following tables: {0},下表至少應有一行:{0}, -There should be atleast one row for {0} table,{0}表至少應有一行, -This action is only allowed for {},此操作僅適用於{}, -This cannot be undone,這不能被撤消, -Time Format,時間格式, -Time series based on is required to create a dashboard chart,需要基於時間序列來創建儀表板圖表, -Time {0} must be in format: {1},時間{0}必須採用以下格式:{1}, -"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",要配置自動重複,請從{0}啟用“允許自動重複”。, -To enable it follow the instructions in the following link: {0},要啟用它,請遵循以下鏈接中的說明:{0}, -"To use Google Calendar, enable {0}.",要使用Google日曆,請啟用{0}。, -"To use Google Contacts, enable {0}.",要使用Google通訊錄,請啟用{0}。, -"To use Google Drive, enable {0}.",要使用Google雲端硬盤,請啟用{0}。, -Today's Events,今日活動, -Toggle Public/Private,切換公共/私人, -Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,如果文檔經歷多個階段,則跟踪文檔生命週期中的里程碑。, -Tree structures are implemented using Nested Set,樹結構使用嵌套集實現, -Trigger Primary Action,觸發主要操作, -URL for documentation or help,文檔或幫助的URL, -URL must start with 'http://' or 'https://',網址必須以“http://”或“https://”開頭, -Unchanged,不變的, -Untitled Column,無標題欄, -Untranslated,未翻譯, -Upcoming Events,活動預告, -Update Existing Records,更新現有記錄, -Update Type,更新類型, -Upload file,上傳文件, -Upload {0} files,上傳{0}個文件, -Uploaded To Google Drive,已上傳到Google雲端硬盤, -Uploaded successfully,已成功上傳, -Uploading {0} of {1},上傳{1}的{0}, -Use SSL for Outgoing,使用SSL進行傳出, -Use Same Name,使用相同的名稱, -Used For Google Maps Integration.,用於Google Maps Integration。, -User ID Property,用戶ID屬性, -User Profile,用戶資料, -User Settings,用戶設置, -User does not exist,用戶不存在, -User {0} has requested for data deletion,用戶{0}已請求刪除數據, -Users assigned to the reference document will get points.,分配給參考文檔的用戶將獲得積分。, -Value must be one of {0},值必須為{0}之一, -Verification,驗證, -Verification Code,驗證碼, -Verification code email not sent. Please contact Administrator.,驗證碼電子郵件未發送。請聯繫管理員。, -Verified,驗證, -Verifier,驗證者, -View Full Log,查看完整日誌, -"View Log of all print, download and export events",查看所有打印,下載和導出事件的日誌, -Visit Web Page,訪問網頁, -Webhook Trigger,Webhook觸發器, -Weekly Long,每周長, -"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.",啟用後,這將允許訪客將文件上載到您的應用程序。如果您希望從用戶收集文件而無需他們登錄,則可以啟用此功能,例如在作業應用程序Web表單中。, -Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,對於非活動站點,每天僅運行一次計劃的作業。如果設置為0,則默認為4天。, -Workflow Status,工作流程狀態, -You are not allowed to export {} doctype,您不能導出{} doctype, -You can try changing the filters of your report.,您可以嘗試更改報告的過濾器。, -You do not have permissions to cancel all linked documents.,您無權取消所有鏈接的文檔。, -You need to create these first: ,您需要先創建這些:, -You need to enable JavaScript for your app to work.,您需要為應用程序啟用JavaScript。, -You need to install pycups to use this feature!,您需要安裝pycups才能使用此功能!, -Your Target,您的目標, -"browse,",瀏覽,, -cancelled this document {0},取消了此文檔{0}, -changed value of {0} {1},{0} {1}的更改值, -choose an,選擇一個, -empty,空的, -or attach a,或附上一個, -submitted this document {0},提交了該文檔{0}, -"tag name..., e.g. #tag",標籤名稱...,例如#tag, -uploaded file,上傳的文件, -via Data Import,通過數據導入, -{0} Google Calendar Events synced.,已同步{0} Google日曆活動。, -{0} Google Contacts synced.,{0} Google通訊錄同步。, -{0} assigned a new task {1} {2} to you,{0}為您分配了新任務{1} {2}, -{0} gained {1} point for {2} {3},{0}為{2} {3}贏得了{1}點, -{0} gained {1} points for {2} {3},{0}的{2} {3}獲得了{1}分, -{0} has no versions tracked.,{0}沒有跟踪版本。, -{0} is not a valid report format. Report format should one of the following {1},{0}不是有效的報告格式。報告格式應為以下{1}之一, -{0} mentioned you in a comment in {1} {2},{0}在{1} {2}的評論中提到了您, -{0} of {1} ({2} rows with children),{1}的{0}(有子項的{2}行), -{0} records will be exported,{0}條記錄將被導出, -{0} shared a document {1} {2} with you,{0}與您共享了一個文檔{1} {2}, -{0} should not be same as {1},{0}不應與{1}相同, -{0} translations pending,{0}個翻譯待定, -{0} {1} is linked with the following submitted documents: {2},{0} {1}與以下提交的文檔鏈接:{2}, -"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}:無法附加新的定期文檔。要啟用自動重複通知電子郵件中的附加文檔,請在打印設置中啟用{1}, -{0}: Fieldname cannot be one of {1},{0}:字段名稱不能是{1}之一, -← Back to upload files,←返回上傳文件, -Activity,活動, -Add / Manage Email Accounts.,新增 / 管理電子郵件帳戶。, -Add Child,新增子項目, -Add Multiple,添加多個, -Add Participants,添加參與者, -Added {0} ({1}),添加{0}({1}), -Address Line 1,地址第一行, -Brand,牌, -Browse,瀏覽, -Chart,圖表, -Close,關閉, -Communication,通訊, -Compact Item Print,緊湊型項目打印, -Continue,繼續, -Country,國家, -Creating {0},創建{0}, -Currency,貨幣, -Customize,客製化, -Daily,日常, -Dear,親愛, -Default,預設, -Delete,刪除, -Designation,指定, -Disabled,不使用, -Doctype,DocType, -Download Template,下載模板, -Dr,博士, -Due Date,截止日期, -Duplicate,複製, -Edit Profile,編輯個人資料, -Email,電子郵件, -End Time,結束時間, -Enter Value,輸入值, -Entity Type,實體類型, -Error,錯誤, -Expired,過期, -Export,出口, -Export not allowed. You need {0} role to export.,不允許導出。您需要{0}的角色。, -Fetching...,正在獲取..., -Field,領域, -Filters,篩選器, -Get Items,找項目, -Goal,目標, -Group,組, -Group Node,組節點, -Help,幫助, -Help Article,幫助文章, -Import Data from CSV / Excel files.,從CSV / Excel文件導入數據。, -In Progress,進行中, -Intermediate,中間, -Invite as User,邀請成為用戶, -"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",看起來服務器的條帶配置存在問題。如果失敗,這筆款項將退還給您的賬戶。, -Loading...,載入中..., -Looks like someone sent you to an incomplete URL. Please ask them to look into it.,貌似有人送你一個不完整的URL。請讓他們尋找到它。, -Master,主, -Missing Values Required,遺漏必須值, -Mobile No,手機號碼, -Name,名稱, -Newsletter,新聞, -Not Allowed,不允許, -Note,注釋, -Offline,離線, -Open,開, -Page {0} of {1},第{0}頁,共{1}頁, -Pay,付, -Pending,擱置, -Phone,電話, -Please click on the following link to set your new password,請點擊以下鏈接來設置新密碼, -Please select another payment method. Stripe does not support transactions in currency '{0}',請選擇其他付款方式。 Stripe不支持貨幣“{0}”的交易, -Please specify,請註明, -Printing,列印, -Priority,優先, -Project,專案, -Quarterly,每季, -Queued,排隊, -Quick Entry,快速入門, -Refreshing,清爽, -Rename,改名, -Reset,重啟, -Review,評論, -Room,房間, -Save,儲存, -Search results for,為。。。。尋找結果, -Select All,全選, -Send,發送, -Sending,發出, -Server Error,服務器錯誤, -Set,集合, -Setup,設定, -Setup Wizard,設置嚮導, -Sr,序號, -Start,開始, -Start Time,開始時間, -Status,狀態, -Submitted,提交, -Tag,標籤, -Title,標題, -Total,總計, -Totals,總計, -Type,類型, -Update,更新資料, -User {0} is disabled,用戶{0}被禁用, -Users and Permissions,用戶和權限, -Warehouse,倉庫, -Welcome to {0},歡迎{0}, -Year,年份, -You,您, -You can also copy-paste this link in your browser,您也可以複製粘貼此鏈接到瀏覽器, -{0} Name,{0}名稱, -{0} is required,{0}是必需的, -Attach File,附加檔案, -Barcode,條碼, -Beginning with,以。。。開始, -Bold,膽大, -CANCELLED,註銷, -Calendar,日曆, -Center,中央, -Clear,明確, -Comment,評論, -Comments,評論, -DRAFT,草案, -Dashboard,儀表板, -Download,下載, -EMail,電子郵件, -Edit in Full Page,全頁編輯, -Email Inbox,電子郵件收件箱, -Icon,圖標, -Insert New Records,插入新記錄, -JavaScript,的JavaScript, -LDAP Settings,LDAP設定, -Left,左, -Like,喜歡, -Link,鏈接, -Logged in,登錄, -Not Like,不喜歡, -Notify by Email,通過電子郵件通知, -Now,現在, -Off,關, -Page,頁, -Reference Name,參考名稱, -Refresh,重新載入, -Repeat,重複, -Right,右邊, -Roles HTML,角色HTML, -Scheduled To Send,計劃送, -Search Results for ,為。。。。尋找結果, -Send Notification To,發送通知給, -Tags,標籤, -Time,時間, -Upload,上載, -User ,用戶, -Web Link,網頁鏈接, -Your Email Address,您的電子郵件地址, -Download Backups,下載備份, -Recorder,錄音機, -Role Permissions Manager,角色權限管理, -Translation Tool,翻譯工具, -Awaiting password,等待密碼, -Current status,當前狀態, -Download template,下載範本, -Edit in full page,編輯在整頁, -Email Id,電子郵件ID, -Email address,電子郵件地址, -Ends on,結束於, -Hidden,隱, -Javascript,Java腳本, -Ldap settings,LDAP設定, -Mobile number,手機號碼, -No,無, -Notes:,筆記:, -Notify by email,通過電子郵件通知, -Permitted Documents For User,對於用戶的許可文件, -Reference Docname,參考DocName, -Reference Doctype,DocType參照, -Reference name,參考名稱, -Scheduled to send,預定發送, -Select Doctype,選擇DocType, -Send Email for Successful backup,發送電子郵件以便成功備份, -Sign up,報名, -Time format,時間格式, -Upload failed,上傳失敗, -User Id,用戶身份, -Yes,是的, -Your email address,您的電子郵件地址, -added {0},添加了{0}, -barcode,條碼, -beginning with,開頭, -blue,藍色, -bold,粗體, -book,書, -calendar,日曆, -certificate,證書, -check,查, -clear,明確, -comment,評論, -comments,註釋, -created,創建, -danger,危險, -dashboard,儀表板, -download,下載, -edit,編輯, -email inbox,電子郵件收件箱, -filter,過濾器, -flag,旗標, -font,字形, -forward,轉發, -green,綠色, -icon,圖標, -like,包含, -link,鏈接, -list,名單, -lock,鎖, -logged in,登錄, -message,訊息, -module,模組, -move,移動, -music,音樂, -new,新增, -now,現在, -off,關閉, -one of,之一, -page,頁面, -print,列印, -random,隨機, -red,紅色, -response,響應, -stop,停, -tag,標籤, -tags,標籤, -tasks,任務, -time,時間, -upload,上載, -user,使用者, -web link,網站鏈接, -yellow,黃色, -Not permitted,不允許, -Add Chart to Dashboard,將圖表添加到儀表板, -Add to Dashboard,添加到儀表板, -Google Translation,谷歌翻譯, -No Filters Set,未設置過濾器, -No Records Created,未創建記錄, -Please Set Chart,請設置圖表, -Please create chart first,請先創建圖表, -"Report has no data, please modify the filters or change the Report Name",報告中沒有數據,請修改過濾器或更改報告名稱, -Select Dashboard,選擇儀表板, -Y Field,Y場, -You need to be in developer mode to edit this document,您需要處於開發人員模式才能編輯此文檔, -Community Contribution,社區貢獻, -Count Filter,計數過濾器, -Dashboard Chart Field,儀錶盤圖表字段, -Desk Chart,桌面圖, -Desk Page,桌面頁面, -Developer Mode Only,僅開發人員模式, -Disable User Customization,禁用用戶自定義, -For example: {} Open,例如:{}打開, -Link Cards,鏈接卡, -Link To,鏈接到, -Onboarding,入職, -Pie,餡餅, -Pin To Top,固定到頂部, -Restrict to Domain,限制域, -Shortcuts,快捷鍵, -X Field,X場, -Y Axis,Y軸, -workspace,工作區, -Setup > User,設置>用戶, -Setup > Customize Form,設置>自定義表格, -Setup > User Permissions,設置>用戶權限, -"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.","連接到QZ托盤應用程序時出錯...

您需要安裝並運行QZ Tray應用程序,才能使用Raw Print功能。

單擊此處下載並安裝QZ托盤
單擊此處以了解有關原始印刷的更多信息 。", -No email account associated with the User. Please add an account under User > Email Inbox.,沒有與該用戶關聯的電子郵件帳戶。請在“用戶”>“電子郵件收件箱”下添加一個帳戶。, -"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了進行比較,請使用> 5,<10或= 324。對於範圍,請使用5:10(對於5到10之間的值)。, -No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認的地址模板。請從設置>打印和商標>地址模板中創建一個新地址。, -Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認的電子郵件帳戶, -Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶, -Attach file,附加檔案, -Contribution Status,貢獻狀態, -Contribution Document Name,貢獻文件名稱, -Extends Another Page,擴展另一頁, -Please select target language for translation,請選擇目標語言進行翻譯, -Select Language,選擇語言, -Confirm Translations,確認翻譯, -Contributed Translations,貢獻翻譯, -Show Tags,顯示標籤, -Do not have permission to access {0} bucket.,沒有訪問{0}存儲桶的權限。, -Allow document creation via Email,允許通過電子郵件創建文檔, -Sender Field,發件人字段, -Logout All Sessions on Password Reset,註銷密碼重置後的所有會話, -Logout From All Devices After Changing Password,更改密碼後從所有設備註銷, -Send Notifications For Documents Followed By Me,發送關於我關注的文檔的通知, -Send Notifications For Email Threads,發送電子郵件主題的通知, -Bypass Restricted IP Address Check If Two Factor Auth Enabled,繞過受限IP地址檢查是否啟用了兩個因素驗證, -Reset LDAP Password,重置LDAP密碼, -Confirm New Password,確認新密碼, -Logout All Sessions,註銷所有會話, -Passwords do not match!,密碼不匹配!, -Dashboard Manager,資訊主頁管理員, -Dashboard Settings,資訊主頁設定, -Chart Configuration,圖表配置, -No Permitted Charts on this Dashboard,此儀表板上沒有允許的圖表, -No Permitted Charts,沒有允許的圖表, -Reset Chart,重置圖表, -via {0},通過{0}, -{0} is not a valid Phone Number,{0}不是有效的電話號碼, -Failed Transactions,交易失敗, -Value for field {0} is too long in {1}. Length should be lesser than {2} characters,字段{0}的值在{1}中太長。長度應小於{2}個字符, -Data Too Long,數據太長, -via Notification,通過通知, -Log in to access this page.,登錄訪問此頁面。, -Report Document Error,報告文件錯誤, -{0} is an invalid Data field.,{0}是無效的數據字段。, -Only Options allowed for Data field are:,只有“數據”字段允許的選項是:, -Select a valid Subject field for creating documents from Email,選擇一個有效的主題字段以通過電子郵件創建文檔, -"Subject Field type should be Data, Text, Long Text, Small Text, Text Editor",主題字段類型應為數據,文本,長文本,小文本,文本編輯器, -Select a valid Sender Field for creating documents from Email,選擇一個有效的發件人字段以通過電子郵件創建文檔, -Sender Field should have Email in options,發件人字段中應有電子郵件選項, -Password changed successfully.,密碼更換成功。, -Failed to change password.,修改密碼失敗。, -No Entry for the User {0} found within LDAP!,在LDAP中找不到用戶{0}的條目!, -No LDAP User found for email: {0},找不到電子郵件的LDAP用戶:{0}, -Prepared Report User,準備的報告用戶, -Scheduler Event,調度事件, -Select Event Type,選擇事件類型, -Schedule Script,排程腳本, -Duration,持續時間, -Custom Options,自訂選項, -"Ex: ""colors"": [""#d1d8dd"", ""#ff5858""]",例如:“顏色”:[“#d1d8dd”,“#ff5858”], -Confirmation Email Template,確認電子郵件模板, -Welcome Email Template,歡迎電子郵件模板, -Schedule Send,安排發送, -Do you really want to send this email newsletter?,您是否真的要發送此電子郵件通訊?, -Advanced Settings,高級設置, -Disable Comments,禁用評論, -Comments on this blog post will be disabled if checked.,如果選中此博客文章的評論將被禁用。, -CSS Class,CSS類, -Full Width,全屏寬度, -Page Builder,頁面生成器, -Page Building Blocks,頁面構建塊, -Header and Breadcrumbs,標頭和麵包屑, -Add Custom Tags,添加自定義標籤, -Web Page Block,網頁塊, -Web Template,網頁範本, -Edit Values,編輯值, -Web Page View,網頁瀏覽, -Path,路徑, -Referrer,推薦人, -Browser,瀏覽器, -Browser Version,瀏覽器版本, -Hide,隱藏, -Enable In App Website Tracking,啟用應用內網站跟踪, -Enable Google Indexing,啟用Google索引, -"To use Google Indexing, enable Google Settings.","要使用Google索引,請啟用Google設置。", -Authorize API Indexing Access,授權API索引訪問, -Indexing Authorization Code,索引授權碼, -Theme Configuration,主題配置, -Font Properties,字體屬性, -Button Rounded Corners,按鈕圓角, -Button Shadows,按鈕陰影, -Button Gradients,按鈕漸變, -Light Color,淺色, -Stylesheet,樣式表, -Custom SCSS,自定義SCSS, -Navbar,導航欄, -Translated Message,翻譯的訊息, -Verified By,認證機構, -Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,使用此控制台可能使攻擊者冒充您並竊取您的信息。不要輸入或粘貼您不理解的代碼。, -{0} h,{0}小時, -New Chart,新圖表, -New Shortcut,新捷徑, -Edit Chart,編輯圖表, -Edit Shortcut,編輯捷徑, -Couldn't Load Desk,無法加載辦公桌, -"Something went wrong while loading Desk. Please relaod the page. If the problem persists, contact the Administrator",加載Desk時出了點問題。請重新整理頁面。如果問題仍然存在,請與管理員聯繫, -Customize Workspace,自定義工作區, -Customizations Saved Successfully,定製成功保存, -Something went wrong while saving customizations,保存自定義設置時出了點問題, -{} Dashboard,{} 儀表板, -No changes in document,文件無變化, -Document is only editable by users with role,只有具有角色的用戶才能編輯文檔, -{0}: Other permission rules may also apply,{0}:其他許可規則也可能適用, -{0} Page Views,{0}瀏覽量, -Expand,擴大, -"Invalid Bearer token, please provide a valid access token with prefix 'Bearer'.",無效的承載令牌,請提供帶有前綴“承載”的有效訪問令牌。, -"Failed to decode token, please provide a valid base64-encoded token.",無法解碼令牌,請提供有效的base64編碼令牌。, -"Invalid token, please provide a valid token with prefix 'Basic' or 'Token'.",無效的令牌,請提供帶有前綴“基本”或“令牌”的有效令牌。, -{0} is not a valid Name,{0}不是有效的名稱, -Your system is being updated. Please refresh again after a few moments.,您的系統正在更新。請稍後再刷新。, -{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}:無法刪除已提交的記錄。您必須先{2}取消{3}。, -Invalid naming series (. missing) for {0},{0}的無效命名系列(。丟失), -Error has occurred in {0},{0}中發生錯誤, -Status Updated,狀態已更新, -You can also copy-paste this {0} to your browser,您也可以將此{0}複製粘貼到瀏覽器中, -Enabled scheduled execution for script {0},為腳本{0}啟用了計劃執行, -Scheduled execution for script {0} has updated,腳本{0}的計劃執行已更新, -The Link specified has either been used before or Invalid,指定的鏈接之前已使用過或無效, -Options for {0} must be set before setting the default value.,必須在設置默認值之前設置{0}的選項。, -Default value for {0} must be in the list of options.,{0}的默認值必須在選項列表中。, -Allow API Indexing Access,允許API索引訪問, -Allow Google Indexing Access,允許Google索引訪問, -Custom Documents,定製文件, -Could not save customization,無法保存自定義, -Transgender,變性人, -Genderqueer,性別酷兒, -Prefer not to say,不想說, -Is Billing Contact,帳單聯絡人, -Address And Contacts,地址和聯繫方式, -Lead Conversion Time,線索轉換時間, -Due Date Based On,到期日基於, -Phone Number,電話號碼, -Linked Documents,鏈接文件, -Account SID,帳戶SID, -Steps,腳步, -email,電子郵件, -Component,零件, -Global Defaults,全域預設值, -Is Public,是公開的, -This chart will be available to all Users if this is set,如果設置此圖表,則所有用戶均可使用, -Number Card,號碼卡, -This card will be available to all Users if this is set,如果設置了此卡,則所有用戶都可以使用此卡, -Stats,統計資料, -Show Percentage Stats,顯示百分比統計, -Stats Time Interval,統計時間間隔, -Show percentage difference according to this time interval,根據此時間間隔顯示百分比差異, -Filters Section,過濾器部分, -Number Card Link,號碼卡鏈接, -API Access,API訪問, -Access Key Secret,訪問密鑰秘密, -S3 Bucket Details,S3鏟斗詳細信息, -Backup Details,備份詳細資料, -Backup Files,備份文件, -Backup public and private files along with the database.,備份公共和私有文件以及數據庫。, -Set to 0 for no limit on the number of backups taken,設置為0表示不限製備份數量, -Meta Image,元圖像, -Google Snippet Preview,Google Snippet預覽, -This is an example Google SERP Preview.,這是Google SERP預覽的示例。, -Hide Block,隱藏塊, -This Month,這個月, -Select From Date,從日期選擇, -since yesterday,從昨天開始, -since last week,自從上週以來, -since last month,自上個月以來, -since last year,從去年開始, -Show,顯示, -New Number Card,新號碼卡, -Your Shortcuts,您的捷徑, -You haven't added any Dashboard Charts or Number Cards yet.,您尚未添加任何儀錶盤圖表或數字卡。, -Click On Customize to add your first widget,單擊“自定義”以添加您的第一個小部件, -Are you sure you want to reset all customizations?,您確定要重置所有自定義設置嗎?, -"Couldn't save, please check the data you have entered",無法保存,請檢查您輸入的數據, -Validation Error,驗證錯誤, -"You can only upload JPG, PNG, PDF, or Microsoft documents.",您只能上傳JPG,PNG,PDF或Microsoft文檔。, -Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data.,將“ {2}”中“ {1}”的長度恢復為{0}。將長度設置為{3}將導致數據截斷。, -'{0}' not allowed for type {1} in row {2},第{2}行的類型{1}不允許使用'{0}', -Option {0} for field {1} is not a child table,字段{1}的選項{0}不是子表, -Invalid Option,無效的選項, -Request Body consists of an invalid JSON structure,請求正文包含無效的JSON結構, -Invalid JSON,無效的JSON, -Party GSTIN,GSTIN派對, -GST State,消費稅國家, -Andaman and Nicobar Islands,安達曼和尼科巴群島, -Arunachal Pradesh,阿魯納恰爾邦, -Assam,阿薩姆邦, -Bihar,比哈爾, -Chandigarh,昌迪加爾, -Chhattisgarh,恰蒂斯加爾邦, -Dadra and Nagar Haveli,達德拉和納加爾·哈維里, -Daman and Diu,達曼和丟, -Haryana,哈里亞納邦, -Himachal Pradesh,喜馬al爾邦, -Jammu and Kashmir,查mu和克什米爾, -Jharkhand,賈坎德邦, -Karnataka,卡納塔克邦, -Lakshadweep Islands,拉克肖普群島, -Maharashtra,馬哈拉施特拉邦, -Manipur,馬尼布爾, -Meghalaya,梅加拉亞邦, -Mizoram,咪唑侖, -Nagaland,那加蘭邦, -Odisha,奧迪沙, -Other Territory,其他地區, -Pondicherry,朋迪榭裡, -Punjab,旁遮普語, -Rajasthan,拉賈斯坦邦, -Sikkim,錫金, -Tamil Nadu,泰米爾納德邦, -GST State Number,消費稅國家編號, -Import from Google Sheets,從Google表格導入, -Must be a publicly accessible Google Sheets URL,必須是可公開訪問的Google表格網址, -Import File Errors and Warnings,導入文件錯誤和警告, -"Successfully imported {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again.",已成功導入{0}條記錄中的{0}條記錄。單擊導出錯誤行,修復錯誤,然後再次導入。, -"Successfully imported {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again.",已成功導入{1}中的{0}條記錄。單擊導出錯誤行,修復錯誤,然後再次導入。, -"Successfully updated {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again.",已成功更新{1}中的{0}條記錄。單擊導出錯誤行,修復錯誤,然後再次導入。, -"Successfully updated {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again.",已成功更新{1}中的{0}條記錄。單擊導出錯誤行,修復錯誤,然後再次導入。, -Data Import Legacy,數據導入傳統, -Documents restored successfully,文件還原成功, -Documents that were already restored,已經還原的文件, -Documents that failed to restore,無法還原的文件, -Document Restoration Summary,文件還原摘要, -Hide Days,隱藏的日子, -Hide Seconds,隱藏秒, -Hide Border,隱藏邊框, -Index Web Pages for Search,索引搜索網頁, -Action / Route,動作/路線, -Document Naming Rule,文件命名規則, -Rule Conditions,規則條件, -Digits,位數, -Counter,計數器, -Document Naming Rule Condition,文件命名規則條件, -Installed Application,已安裝的應用程序, -Application Name,應用名稱, -Application Version,應用版本, -Installed Applications,已安裝的應用程序, -Navbar Item,導航欄項目, -Item Label,物品標籤, -Item Type,物品種類, -Navbar Settings,導航欄設置, -Application Logo,應用徽標, -Logo Width,徽標寬度, -Dropdowns,下拉菜單, -Settings Dropdown,設置下拉菜單, -Help Dropdown,幫助下拉菜單, -Query / Script,查詢/腳本, -"Filters will be accessible via filters.

Send output as result = [result], or for old style data = [columns], [result]","可以通過filters訪問filters

result = [result]發送輸出,或以舊式data = [columns], [result]", -Client Code,客戶代碼, -Report Column,報告欄, -Report Filter,報告過濾器, -Wildcard Filter,通配符過濾器, -"Will add ""%"" before and after the query",查詢前後將添加“%”, -"Route: Example ""/desk""",路線:示例“ / desk”, -Enable Onboarding,啟用入職, -Password Reset Link Generation Limit,密碼重置鏈接生成限制, -Hourly rate limit for generating password reset links,每小時生成密碼重置鏈接的速率限制, -Send document Web View link in email,通過電子郵件發送文檔Web視圖鏈接, -Enable Auto-deletion of Prepared Reports,啟用自動刪除準備好的報告, -Prepared Report Expiry Period (Days),準備好的報告有效期限(天), -System will automatically delete Prepared Reports after these many days since creation,自創建以來的許多天后,系統將自動刪除“準備的報告”, -Package Document Type,包裝文件類型, -Overwrite,覆寫, -Package Publish Target,包發布目標, -Site URL,網站網址, -Package Publish Tool,包發布工具, -Click on the row for accessing filters.,單擊該行以訪問過濾器。, -Sites,網站, -Last Deployed On,上次部署時間, -Console Log,控制台日誌, -"Set Default Options for all charts on this Dashboard (Ex: ""colors"": [""#d1d8dd"", ""#ff5858""])",為該儀表板上的所有圖表設置默認選項(例如:“顏色”:[“#d1d8dd”,“#ff5858”]), -Use Report Chart,使用報告表, -Heatmap,熱圖, -Dynamic Filters,動態濾鏡, -Dynamic Filters JSON,動態過濾器JSON, -Set Dynamic Filters,設置動態過濾器, -Click to Set Dynamic Filters,單擊以設置動態過濾器, -Hide Custom DocTypes and Reports,隱藏自定義DocType和報告, -Checking this will hide custom doctypes and reports cards in Links section,選中此選項將在“鏈接”部分中隱藏自定義文檔類型和報告卡, -DocType View,DocType視圖, -Which view of the associated DocType should this shortcut take you to?,該快捷方式應該帶您到關聯的DocType的哪個視圖?, -List View Settings,列表視圖設置, -Maximum Number of Fields,最大字段數, -Module Onboarding,模塊入職, -System managers are allowed by default,默認情況下允許系統管理員, -Documentation URL,文檔網址, -Is Complete,已經完成, -Alert,警報, -Document Link,文件連結, -Attachment Link,附件鏈接, -Open Reference Document,打開參考文件, -Custom Configuration,自定義配置, -Filters Configuration,過濾器配置, -Dynamic Filters Section,動態過濾器部分, -Please create Card first,請先創建卡, -Onboarding Permission,入職許可, -Onboarding Step,入職步驟, -Is Mandatory,是強制性的, -Is Skipped,被跳過, -Create Entry,創建條目, -Update Settings,更新設定, -View Report,查看報告, -Go to Page,轉到頁面, -Watch Video,看視頻, -Show Full Form?,顯示完整表格?, -Show full form instead of a quick entry modal,顯示完整表格,而不是快速輸入模式, -Report Reference Doctype,報告參考文檔類型, -Report Description,報告說明, -This will be shown to the user in a dialog after routing to the report,路由到報告後,這將在對話框中顯示給用戶, -Example: #Tree/Account,示例:#Tree /帳戶, -Callback Title,回調標題, -This will be shown in a modal after routing,路由後將在模式中顯示, -Validate Field,驗證字段, -Value to Validate,驗證價值, -Use % for any non empty value.,將%用作任何非空值。, -Video URL,影片網址, -Onboarding Step Map,入職步驟圖, -System Console,系統控制台, -To print output use log(text),要打印輸出,請使用log(text), -Commit,承諾, -Execute Console script,執行控制台腳本, -Execute,執行, -Create Contacts from Incoming Emails,通過傳入電子郵件創建聯繫人, -Inbox User,收件箱用戶, -Disabled Auto Reply,禁用自動回复, -Schedule Sending,計劃發送, -Message (Markdown),訊息(降價), -Message (HTML),訊息(HTML), -Send Attachments,發送附件, -Testing,測驗, -System Notification,系統通知, -Twilio Number,特維里奧數, -"To use WhatsApp for Business, initialize Twilio Settings.","要使用WhatsApp for Business,請初始化Twilio設置。", -"To use Slack Channel, add a Slack Webhook URL.","要使用Slack Channel,請添加Slack Webhook URL 。", -Send System Notification,發送系統通知, -"If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar.",如果啟用,則通知將顯示在導航欄右上角的通知下拉列表中。, -Send To All Assignees,發送給所有受讓人, -Receiver By Document Field,接收方按憑證字段, -Remote Value Filters,遠程值過濾器, -API Key of the user(Event Subscriber) on the producer site,生產者站點上用戶(事件訂閱者)的API密鑰, -API Secret of the user(Event Subscriber) on the producer site,生產者站點上用戶(事件訂閱者)的API秘密, -Paytm Settings,Paytm設置, -Merchant Key,商戶密碼, -Industry Type ID,行業類型ID, -See https://docs.aws.amazon.com/general/latest/gr/s3.html for details.,有關詳細信息,請參見https://docs.aws.amazon.com/general/latest/gr/s3.html。, -Twilio Number Group,Twilio號碼組, -Twilio Settings,Twilio設置, -Auth Token,驗證令牌, -Read Time,閱讀時間, -in minutes,在幾分鐘內, -Featured,精選, -Hide CTA,隱藏號召性文字, -"Description for listing page, in plain text, only a couple of lines. (max 200 characters)",列表頁面的描述,以純文本形式,只有幾行。 (最多200個字符), -Meta Title,元標題, -Enable Social Sharing,啟用社交分享, -Show CTA in Blog,在博客中顯示CTA, -CTA Label,CTA標籤, -CTA URL,CTA網址, -Default Portal Home,默認門戶主頁, -Social Link Settings,社交鏈接設置, -Social Link Type,社交鏈接類型, -facebook,臉書, -"If Icon is set, it will be shown instead of Label",如果設置了圖標,它將顯示而不是標籤, -Apply Document Permissions,套用文件權限, -"For help see Client Script API and Examples","如需幫助,請參閱客戶端腳本API和示例", -Dynamic Route,動態路線, -Map route parameters into form variables. Example /project/<name>,將路線參數映射到表單變量中。示例/project/<name>, -Context Script,上下文腳本, -"

Set context before rendering a template. Example:

\n

\ncontext.project = frappe.get_doc(""Project"", frappe.form_dict.name)\n
","

在渲染模板之前設置上下文。例:

 context.project = frappe.get_doc("Project", frappe.form_dict.name)
", -Title of the page,頁面標題, -This title will be used as the title of the webpage as well as in meta tags,該標題將用作網頁以及元標記的標題, -Makes the page public,公開頁面, -Checking this will publish the page on your website and it'll be visible to everyone.,選中此復選框將在您的網站上發布該頁面,並且所有人都可以看到該頁面。, -URL of the page,頁面網址, -"This will be automatically generated when you publish the page, you can also enter a route yourself if you wish",當您發布頁面時,它將自動生成,也可以根據需要自己輸入路線, -Content type for building the page,用於構建頁面的內容類型, -"You can select one from the following,",您可以從以下選項中選擇一個,, -Standard rich text editor with controls,帶控件的標準RTF編輯器, -Github flavoured markdown syntax,Github風格的Markdown語法, -HTML with jinja support,帶有Jinja支持的HTML, -Frappe page builder using components,使用組件的Frappe頁面構建器, -Checking this will show a text area where you can write custom javascript that will run on this page.,選中此復選框將顯示一個文本區域,您可以在其中編寫將在此頁面上運行的自定義JavaScript。, -Meta title for SEO,SEO的元標題, -"By default the title is used as meta title, adding a value here will override it.",默認情況下,標題用作元標題,在此處添加值將覆蓋它。, -"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.",元描述是HTML屬性,可提供網頁的簡要摘要。諸如Google之類的搜索引擎通常會在搜索結果中顯示元描述,這可能會影響點擊率。, -"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.",元圖像是代表頁面內容的唯一圖像。此卡片的圖片寬度至少應為280px,高度至少應為150px。, -Add Space on Top,在頂部添加空間, -Add Space on Bottom,在底部添加空間, -Is Unique,是獨特的, -User Agent,用戶代理, -Hide Login,隱藏登入, -Navbar Template,導航欄模板, -Navbar Template Values,導航欄模板值, -Call To Action,呼籲採取行動, -Call To Action URL,號召性用語URL, -Footer Logo,頁腳徽標, -Footer Template,頁腳模板, -Footer Template Values,頁腳模板值, -Enable Tracking Page Views,啟用跟踪頁面瀏覽量, -"Checking this will enable tracking page views for blogs, web pages, etc.",選中此選項將啟用跟踪博客,網頁等的頁面瀏覽量。, -Disable Signup for your site,禁用網站註冊, -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.,如果您不希望用戶在您的網站上註冊帳戶,請選中此復選框。除非您明確提供,否則用戶將無法獲得桌面訪問權限。, -URL to go to on clicking the slideshow image,單擊幻燈片圖像時要轉到的URL, -Custom Overrides,自定義替代, -Ignored Apps,忽略的應用, -Include Theme from Apps,包含來自應用程序的主題, -Website Theme Ignore App,網站主題忽略應用, -Are you sure you want to save this document?,您確定要保存此文檔嗎?, -"Level 0 is for document level permissions, higher levels for field level permissions.",級別0用於文檔級別權限,更高級別用於字段級別權限。, -Website Analytics,網站分析, -Less,減, -Not a valid DocType view:,無效的DocType視圖:, -Unknown View,未知視圖, -Let's take you back to onboarding,讓我們回到入門, -Looks Great,看起來很棒, -Looks like you didn't change the value,看起來您沒有更改值, -Skip Step,跳過步驟, -"You're doing great, let's take you back to the onboarding page.",您做的很棒,讓我們回到入門頁面。, -Submit this document to complete this step.,提交此文檔以完成此步驟。, -You may continue with onboarding,您可以繼續入職, -You seem good to go!,你看起來不錯!, -Onboarding Complete,入職完成, -{0} Settings,{0}設置, -Reset Fields,重新設置領域, -Select Fields,選擇字段, -Warning: Unable to find {0} in any table related to {1},警告:在與{1}相關的任何表中找不到{0}, -Tree view is not available for {0},樹視圖不適用於{0}, -Create Card,創建卡, -Card Label,卡標籤, -Reports already in Queue,報表已在隊列中, -Proceed Anyway,仍要繼續, -Delete and Generate New,刪除並生成新的, -1 Report,1份報告, -Select Fields To Insert,選擇要插入的字段, -Select Fields To Update,選擇要更新的字段, -"This document is already amended, you cannot ammend it again",該文檔已被修改,您無法再次對其進行修改, -Add to ToDo,添加到待辦事項, -{0} is currently {1},{0}當前為{1}, -{0} are currently {1},{0}當前為{1}, -created {0},已創建{0}, -Make a call,打個電話, -Too Many Requests,請求太多, -"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",無效的授權標頭,請添加具有以下任一前綴的令牌:{0}。, -"Invalid Authorization Type {0}, must be one of {1}.",無效的授權類型{0},必須是{1}之一。, -Please select a valid date filter,請選擇一個有效的日期過濾器, -Value {0} must be in the valid duration format: d h m s,值{0}必須採用有效的持續時間格式:dhms, -Google Sheets URL is invalid or not publicly accessible.,Google表格網址無效或無法公開訪問。, -"Google Sheets URL must end with ""gid={number}"". Copy and paste the URL from the browser address bar and try again.",Google表格網址必須以“ gid = {number}”結尾。從瀏覽器地址欄中復制並粘貼URL,然後重試。, -Incorrect URL,網址錯誤, -"""{0}"" is not a valid Google Sheets URL",“ {0}”不是有效的Google表格網址, -Duplicate Name,名稱重複, -"Please check the value of ""Fetch From"" set for field {0}",請檢查為字段{0}設置的“提取自”的值, -Wrong Fetch From value,從價值中提取錯誤, -A field with the name '{}' already exists in doctype {}.,文檔類型{}中已經存在名稱為“ {}”的字段。, -Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account.,自定義字段{0}由管理員創建,只能通過管理員帳戶刪除。, -Failed to send {0} Auto Email Report,無法發送{0}自動電子郵件報告, -Test email sent to {0},測試發送到{0}的電子郵件, -Email queued to {0} recipients,電子郵件已排隊{0}個收件人, -Newsletter should have at least one recipient,時事通訊應至少有一位收件人, -Please enable Twilio settings to send WhatsApp messages,請啟用Twilio設置以發送WhatsApp消息, -"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",不允許附加{0}文檔,請在“打印設置”中啟用“允許{0}打印”, -Signup Disabled,註冊已禁用, -Signups have been disabled for this website.,該網站的註冊已被禁用。, -Open Document,打開文件, -The comment cannot be empty,評論不能為空, -Hourly comment limit reached for: {0},已達到每小時評論的限制:{0}, -Please add a valid comment.,請添加有效的評論。, -Document {0} Already Restored,文檔{0}已恢復, -Restoring Deleted Document,恢復已刪除的文檔, -Invalid template file for import,無效的導入模板文件, -Invalid or corrupted content for import,導入的內容無效或損壞, -Value {0} must in {1} format,值{0}必須為{1}格式, -Could not map column {0} to field {1},無法將列{0}映射到字段{1}, -Skipping Duplicate Column {0},跳過重複的列{0}, -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.,列{0}具有{1}不同的日期格式。自動將{2}設置為默認格式,因為它是最常見的格式。請將此列中的其他值更改為此格式。, -You have reached the hourly limit for generating password reset links. Please try again later.,您已達到生成密碼重置鏈接的小時限制。請稍後再試。, -Please hide the standard navbar items instead of deleting them,請隱藏標準導航欄項目,而不要刪除它們, -DocType's name should not start or end with whitespace,DocType的名稱不應以空格開頭或結尾, -File name cannot have {0},文件名不能為{0}, -{0} is not a valid file url,{0}不是有效的文件網址, -Error Attaching File,附加文件時出錯, -Please generate keys for the Event Subscriber User {0} first.,請首先為事件訂閱者用戶{0}生成密鑰。, -Please set API Key and Secret on the producer and consumer sites first.,請首先在生產者和消費者網站上設置API密鑰和密鑰。, -User {0} not found on the producer site,在生產者站點上找不到用戶{0}, -Event Subscriber has to be a System Manager.,事件訂閱者必須是系統管理員。, -Row #{0}: Invalid Local Fieldname,行#{0}:無效的本地字段名, -Row #{0}: Please set Mapping or Default Value for the field {1} since its a dependency field,行#{0}:請為字段{1}設置“映射”或“默認值”,因為它是一個依賴項字段, -Row #{0}: Please set remote value filters for the field {1} to fetch the unique remote dependency document,第#{0}行:請為字段{1}設置遠程值過濾器,以獲取唯一的遠程依賴關係文檔, -Paytm payment gateway settings,Paytm付款網關設置, -"Company, Fiscal Year and Currency defaults",公司,會計年度和貨幣默認值, -Razorpay Signature Verification Failed,Razorpay簽名驗證失敗, -Google Drive - Could not locate - {0},Google雲端硬盤-找不到-{0}, -"Sync token was invalid and has been resetted, Retry syncing.",同步令牌無效,並且已重置,請重試同步。, -Please select another payment method. Paytm does not support transactions in currency '{0}',請選擇其他付款方式。 Paytm不支持貨幣“ {0}”的交易, -Invalid Account SID or Auth Token.,無效的帳戶SID或身份驗證令牌。, -Please enable twilio settings before sending WhatsApp messages,請在發送WhatsApp消息之前啟用twilio設置, -Delivery Failed,運送失敗, -Twilio WhatsApp Message Error,Twilio WhatsApp消息錯誤, -A featured post must have a cover image,精選帖子必須有封面圖片, -Load More,裝載更多, -Published on,發表於, -Enable developer mode to create a standard Web Template,啟用開發人員模式以創建標準的Web模板, -Was this article helpful?,本文是否有幫助?, -Thank you for your feedback!,感謝您的反饋意見!, -New Mention on {0},關於{0}的新提及, -Assignment Update on {0},{0}上的作業更新, -New Document Shared {0},共享新文檔{0}, -Energy Point Update on {0},{0}的能源點更新, -You cannot create a dashboard chart from single DocTypes,您不能從單個DocType創建儀錶盤圖表, -Invalid json added in the custom options: {0},自定義選項中添加了無效的json:{0}, -Invalid JSON in card links for {0},卡鏈接中{0}的JSON無效, -Standard Not Set,未設定標準, -Please set the following documents in this Dashboard as standard first.,請首先在此儀錶盤中設置以下文檔為標準。, -Shared with the following Users with Read access:{0},與具有讀取權限的以下用戶共享:{0}, -Already in the following Users ToDo list:{0},在以下“用戶待辦事項”列表中:{0}, -Your assignment on {0} {1} has been removed by {2},您在{0} {1}上的分配已被{2}刪除, -Invalid Credentials,無效證件, -Print UOM after Quantity,數量後打印UOM, -Uncaught Server Exception,未捕獲的服務器異常, -There was an error building this page,建立此頁面時發生錯誤, -Hide Traceback,隱藏回溯, -Value from this field will be set as the due date in the ToDo,來自此字段的值將在待辦事項中設置為截止日期, -New module created {0},創建了新模塊{0}, -"Report has no numeric fields, please change the Report Name",報告沒有數字字段,請更改報告名稱, -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.,有些文檔的工作流程狀態在此工作流程中不存在。建議您將這些狀態添加到工作流中,並在刪除這些狀態之前更改其狀態。, -Worflow States Don't Exist,蠕變狀態不存在, -Energy Points:,能量點:, -Review Points:,審查要點:, -Invalid expression set in filter {0} ({1}),在過濾器{0}({1})中設置了無效的表達式, -Invalid expression set in filter {0},過濾器{0}中設置的表達式無效, -{0} {1} added to Dashboard {2},{0} {1}已添加到儀表板{2}, -Set Filters for {0},為{0}設置過濾器, -Not permitted to view {0},不允許查看{0}, -Camera,相機, -Invalid filter: {0},無效的過濾器:{0}, -Let's Get Started,讓我們開始吧, -Reports & Masters,報告和大師, -New {0} {1} added to Dashboard {2},新的{0} {1}已添加到儀表板{2}, -New {0} {1} created,創建了新的{0} {1}, -New {0} Created,新創建的{0}, -"Invalid ""depends_on"" expression set in filter {0}",在過濾器{0}中設置了無效的“ depends_on”表達式, -{0} Reports,{0}個報告, -There is {0} with the same filters already in the queue:,隊列中已經有{0}個具有相同過濾條件的過濾器:, -There are {0} with the same filters already in the queue:,隊列中已經有{0}個具有相同過濾條件的過濾器:, -Are you sure you want to generate a new report?,您確定要生成新報告嗎?, -{0}: {1} vs {2},{0}:{1}與{2}, -Add a {0} Chart,添加一個{0}圖表, -Currently you have {0} review points,目前您有{0}個評論點, -{0} is not a valid DocType for Dynamic Link,{0}不是動態鏈接的有效DocType, -via Assignment Rule,通過分配規則, -Based on Field,基於現場, -Assign to the user set in this field,分配給該字段中的用戶集, -Log Setting User,日誌設置用戶, -Log Settings,日誌設定, -Error Log Notification,錯誤日誌通知, -Users To Notify,用戶通知, -Log Cleanup,日誌清理, -Clear Error log After,之後清除錯誤日誌, -Clear Activity Log After,之後清除活動日誌, -Clear Email Queue After,之後清除電子郵件隊列, -Please save to edit the template.,請保存以編輯模板。, -Incorrect email or password. Please check your login credentials.,錯誤的郵箱帳號或密碼。請檢查您的登錄憑據。, -Incorrect Configuration,配置錯誤, -You are not allowed to delete Standard Report,您無權刪除標準報告, -You have unseen {0},您看不見{0}, -Log cleanup and notification configuration,日誌清理和通知配置, -Document Actions,文件動作, -Document Links,文件連結, -List Settings,清單設定, -Cannot delete standard link. You can hide it if you want,無法刪除標準鏈接。你可以藏起來, -Cannot delete standard action. You can hide it if you want,無法刪除標準操作。你可以藏起來, -Applied On,應用於, -For DocType Link / DocType Action,對於DocType鏈接/ DocType操作, -Cannot edit filters for standard charts,無法編輯標準圖表的過濾器, -Event Producer Last Update,活動製作人最後更新, -Default for 'Check' type of field {0} must be either '0' or '1',字段{0}的“檢查”類型的默認值必須為“ 0”或“ 1”, -Non Negative,非負數, -Rules with higher priority number will be applied first.,優先級較高的規則將首先應用。, -Open URL in a New Tab,在新標籤頁中打開URL, -Align Right,右對齊, -Loading Filters...,正在加載過濾器..., -Count Customizations,計數自定義, -For Example: {} Open,例如:{}打開, -Choose Existing Card or create New Card,選擇現有卡或創建新卡, -Number Cards,號碼卡, -Function Based On,基於功能, -Add Filters,添加過濾器, -Skip,跳躍, -Dismiss,解僱, -Value cannot be negative for,值不能為負, -Value cannot be negative for {0}: {1},{0}的值不能為負:{1}, -Negative Value,負值, -Authentication failed while receiving emails from Email Account: {0}.,從電子郵件帳戶{0}接收電子郵件時,身份驗證失敗。, -Message from server: {0},來自服務器的消息:{0}, diff --git a/frappe/utils/install.py b/frappe/utils/install.py index a5f46dc555..1f1f648503 100644 --- a/frappe/utils/install.py +++ b/frappe/utils/install.py @@ -258,6 +258,13 @@ def add_standard_navbar_items(): "action": "frappe.ui.toolbar.route_to_user()", "is_standard": 1, }, + { + "item_label": "Manage Subscriptions", + "item_type": "Action", + "action": "frappe.ui.toolbar.redirectToUrl()", + "hidden": 1, + "is_standard": 1, + }, { "item_label": "Session Defaults", "item_type": "Action", diff --git a/frappe/utils/subscription.py b/frappe/utils/subscription.py new file mode 100644 index 0000000000..709ac1afae --- /dev/null +++ b/frappe/utils/subscription.py @@ -0,0 +1,35 @@ +import json + +import requests + +import frappe + + +@frappe.whitelist() +def remote_login(): + try: + login_url = frappe.conf.subscription["login_url"] + if frappe.conf.subscription["expiry"] and login_url: + resp = requests.post(login_url) + + if resp.status_code != 200: + return + + return json.loads(resp.text)["message"] + except Exception: + return False + + return False + + +def enable_manage_subscription(): + if not frappe.db.exists("Navbar Item", {"item_label": "Manage Subscriptions"}): + return + + navbar_item, hidden = frappe.db.get_value( + "Navbar Item", {"item_label": "Manage Subscriptions"}, ["name", "hidden"] + ) + if navbar_item and hidden: + doc = frappe.get_cached_doc("Navbar Item", navbar_item) + doc.hidden = False + doc.save()